const google.golang.org/grpc/codes.Canceled

16 uses

	google.golang.org/grpc/codes (current package)
		code_string.go#L35: 	case Canceled:
		code_string.go#L76: 	case Canceled:
		codes.go#L45: 	Canceled Code = 1
		codes.go#L206: 	`"CANCELLED"`:/* [sic] */ Canceled,

	google.golang.org/grpc
		clientconn.go#L67: 	ErrClientConnClosing = status.Error(codes.Canceled, "grpc: the client connection is closing")
		clientconn.go#L1491: 			return nil, status.Error(codes.Canceled, "the provided transport is no longer valid to use")
		picker_wrapper.go#L135: 					return pick{}, status.Error(codes.Canceled, errStr)
		rpc_util.go#L1008: var errContextCanceled = status.Error(codes.Canceled, context.Canceled.Error())
		stream.go#L1343: 				as.finish(status.Error(codes.Canceled, "grpc: the SubConn is closing"))

	google.golang.org/grpc/health
		server.go#L125: 				return status.Error(codes.Canceled, "Stream has ended.")
		server.go#L129: 			return status.Error(codes.Canceled, "Stream has ended.")

	google.golang.org/grpc/internal/transport
		handler_server.go#L501: 		return status.Error(codes.Canceled, err.Error())
		http2_client.go#L1254: 	if statusCode == codes.Canceled {
		http_util.go#L60: 		http2.ErrCodeCancel:             codes.Canceled,
		transport.go#L697: 		return status.Error(codes.Canceled, err.Error())

	google.golang.org/grpc/status
		status.go#L159: 		return New(codes.Canceled, err.Error())