Home
last modified time | relevance | path

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

/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DNativeMethods.Generated.cs460 public delegate CallError grpcsharp_call_cancel_delegate(CallSafeHandle call); in grpcsharp_call_cancel_delegate()
461 …public delegate CallError grpcsharp_call_cancel_with_status_delegate(CallSafeHandle call, StatusCo… in grpcsharp_call_cancel_with_status_delegate()
462 …public delegate CallError grpcsharp_call_start_unary_delegate(CallSafeHandle call, BatchContextSaf… in grpcsharp_call_start_unary_delegate()
463 …public delegate CallError grpcsharp_call_start_client_streaming_delegate(CallSafeHandle call, Batc… in grpcsharp_call_start_client_streaming_delegate()
464 …public delegate CallError grpcsharp_call_start_server_streaming_delegate(CallSafeHandle call, Batc… in grpcsharp_call_start_server_streaming_delegate()
465 …public delegate CallError grpcsharp_call_start_duplex_streaming_delegate(CallSafeHandle call, Batc… in grpcsharp_call_start_duplex_streaming_delegate()
466 …public delegate CallError grpcsharp_call_send_message_delegate(CallSafeHandle call, BatchContextSa… in grpcsharp_call_send_message_delegate()
467 …public delegate CallError grpcsharp_call_send_close_from_client_delegate(CallSafeHandle call, Batc… in grpcsharp_call_send_close_from_client_delegate()
468 …public delegate CallError grpcsharp_call_send_status_from_server_delegate(CallSafeHandle call, Bat… in grpcsharp_call_send_status_from_server_delegate()
469 …public delegate CallError grpcsharp_call_recv_message_delegate(CallSafeHandle call, BatchContextSa… in grpcsharp_call_recv_message_delegate()
[all …]
DCallError.cs28 internal enum CallError enum
58 public static void CheckOk(this CallError callError) in CheckOk()
60 if (callError != CallError.OK) in CheckOk()
/external/grpc-grpc/templates/src/csharp/Grpc.Core/Internal/
DNativeMethods.Generated.cs.template28 'CallError grpcsharp_call_cancel(CallSafeHandle call)',
29 …'CallError grpcsharp_call_cancel_with_status(CallSafeHandle call, StatusCode status, string descri…
30 …'CallError grpcsharp_call_start_unary(CallSafeHandle call, BatchContextSafeHandle ctx, byte[] send…
31 …'CallError grpcsharp_call_start_client_streaming(CallSafeHandle call, BatchContextSafeHandle ctx, …
32 …'CallError grpcsharp_call_start_server_streaming(CallSafeHandle call, BatchContextSafeHandle ctx, …
33 …'CallError grpcsharp_call_start_duplex_streaming(CallSafeHandle call, BatchContextSafeHandle ctx, …
34 …'CallError grpcsharp_call_send_message(CallSafeHandle call, BatchContextSafeHandle ctx, byte[] sen…
35 …'CallError grpcsharp_call_send_close_from_client(CallSafeHandle call, BatchContextSafeHandle ctx)',
36 …'CallError grpcsharp_call_send_status_from_server(CallSafeHandle call, BatchContextSafeHandle ctx,…
37 'CallError grpcsharp_call_recv_message(CallSafeHandle call, BatchContextSafeHandle ctx)',
[all …]
/external/grpc-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.py153 self.assertEqual(cygrpc.CallError.ok, call_result)
188 self.assertEqual(cygrpc.CallError.ok, request_call_result)
254 self.assertEqual(cygrpc.CallError.ok, server_start_batch_result)
D_common.py92 cygrpc.CallError.ok, cygrpc.CompletionType.operation_complete, True)
/external/grpc-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)
/external/grpc-grpc/src/python/grpcio/grpc/_cython/_cygrpc/
Drecords.pyx.pxi83 class CallError: class