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

14 uses

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

	google.golang.org/grpc
		clientconn.go#L67: 	ErrClientConnClosing = status.Error(codes.Canceled, "grpc: the client connection is closing")
		clientconn.go#L1359: 			return nil, status.Error(codes.Canceled, "the provided transport is no longer valid to use")
		picker_wrapper.go#L122: 					return nil, balancer.PickResult{}, status.Error(codes.Canceled, errStr)
		rpc_util.go#L838: 		return status.Error(codes.Canceled, err.Error())
		stream.go#L990: 	if len(cs.binlogs) != 0 && status.Code(err) == codes.Canceled {
		stream.go#L1263: 				as.finish(status.Error(codes.Canceled, "grpc: the SubConn is closing"))

	google.golang.org/grpc/internal/transport
		handler_server.go#L474: 		return status.Error(codes.Canceled, err.Error())
		http2_client.go#L1189: 	if statusCode == codes.Canceled {
		http_util.go#L62: 		http2.ErrCodeCancel:             codes.Canceled,
		transport.go#L820: 		return status.Error(codes.Canceled, err.Error())

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