Home
last modified time | relevance | path

Searched refs:CallError (Results 1 – 11 of 11) sorted by relevance

/third_party/grpc/templates/src/csharp/Grpc.Core/Internal/
Dnative_methods.include27 'CallError grpcsharp_call_cancel(CallSafeHandle call)',
28 …'CallError grpcsharp_call_cancel_with_status(CallSafeHandle call, StatusCode status, string descri…
29 …'CallError grpcsharp_call_start_unary(CallSafeHandle call, BatchContextSafeHandle ctx, SliceBuffer…
30 …'CallError grpcsharp_call_start_client_streaming(CallSafeHandle call, BatchContextSafeHandle ctx, …
31 …'CallError grpcsharp_call_start_server_streaming(CallSafeHandle call, BatchContextSafeHandle ctx, …
32 …'CallError grpcsharp_call_start_duplex_streaming(CallSafeHandle call, BatchContextSafeHandle ctx, …
33 …'CallError grpcsharp_call_send_message(CallSafeHandle call, BatchContextSafeHandle ctx, SliceBuffe…
34 …'CallError grpcsharp_call_send_close_from_client(CallSafeHandle call, BatchContextSafeHandle ctx)',
35 …'CallError grpcsharp_call_send_status_from_server(CallSafeHandle call, BatchContextSafeHandle ctx,…
36 'CallError grpcsharp_call_recv_message(CallSafeHandle call, BatchContextSafeHandle ctx)',
[all …]
/third_party/grpc/src/csharp/Grpc.Core/Internal/
DNativeMethods.Generated.cs929 public delegate CallError grpcsharp_call_cancel_delegate(CallSafeHandle call); in grpcsharp_call_cancel_delegate()
930 …public delegate CallError grpcsharp_call_cancel_with_status_delegate(CallSafeHandle call, StatusCo… in grpcsharp_call_cancel_with_status_delegate()
931 …public delegate CallError grpcsharp_call_start_unary_delegate(CallSafeHandle call, BatchContextSaf… in grpcsharp_call_start_unary_delegate()
932 …public delegate CallError grpcsharp_call_start_client_streaming_delegate(CallSafeHandle call, Batc… in grpcsharp_call_start_client_streaming_delegate()
933 …public delegate CallError grpcsharp_call_start_server_streaming_delegate(CallSafeHandle call, Batc… in grpcsharp_call_start_server_streaming_delegate()
934 …public delegate CallError grpcsharp_call_start_duplex_streaming_delegate(CallSafeHandle call, Batc… in grpcsharp_call_start_duplex_streaming_delegate()
935 …public delegate CallError grpcsharp_call_send_message_delegate(CallSafeHandle call, BatchContextSa… in grpcsharp_call_send_message_delegate()
936 …public delegate CallError grpcsharp_call_send_close_from_client_delegate(CallSafeHandle call, Batc… in grpcsharp_call_send_close_from_client_delegate()
937 …public delegate CallError grpcsharp_call_send_status_from_server_delegate(CallSafeHandle call, Bat… in grpcsharp_call_send_status_from_server_delegate()
938 …public delegate CallError grpcsharp_call_recv_message_delegate(CallSafeHandle call, BatchContextSa… in grpcsharp_call_recv_message_delegate()
[all …]
DCallError.cs28 internal enum CallError enum
71 public static void CheckOk(this CallError callError) in CheckOk()
73 if (callError != CallError.OK) in CheckOk()
/third_party/grpc/src/python/grpcio_tests/tests/unit/_cython/
D_no_messages_server_completion_queue_per_call_test.py109 cygrpc.CallError.ok,
112 _common.OperationResult(cygrpc.CallError.ok,
D_no_messages_single_server_completion_queue_test.py103 cygrpc.CallError.ok,
106 _common.OperationResult(cygrpc.CallError.ok,
D_read_some_but_not_all_responses_test.py230 self.assertEqual(cygrpc.CallError.ok, request_call_result)
231 self.assertEqual(cygrpc.CallError.ok,
Dcygrpc_test.py147 self.assertEqual(cygrpc.CallError.ok, call_result)
182 self.assertEqual(cygrpc.CallError.ok, request_call_result)
247 self.assertEqual(cygrpc.CallError.ok, server_start_batch_result)
D_common.py92 cygrpc.CallError.ok, cygrpc.CompletionType.operation_complete, True)
/third_party/grpc/src/ruby/spec/generic/
Drpc_desc_spec.rb24 CallError = GRPC::Core::CallError constant
63 expect(@call).to receive(:read_unary_request).once.and_raise(CallError)
120 CallError)
/third_party/grpc/src/csharp/Grpc.Microbenchmarks/
DUtf8Encode.cs66 return CallError.OK; in Setup()
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Drecords.pyx.pxi81 class CallError: class