Searched refs:CallError (Results 1 – 10 of 10) sorted by relevance
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | NativeMethods.Generated.cs | 460 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 …]
|
D | CallError.cs | 28 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/ |
D | NativeMethods.Generated.cs.template | 28 '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.py | 109 cygrpc.CallError.ok, 112 _common.OperationResult(cygrpc.CallError.ok,
|
D | _no_messages_single_server_completion_queue_test.py | 103 cygrpc.CallError.ok, 106 _common.OperationResult(cygrpc.CallError.ok,
|
D | _read_some_but_not_all_responses_test.py | 230 self.assertEqual(cygrpc.CallError.ok, request_call_result) 231 self.assertEqual(cygrpc.CallError.ok,
|
D | cygrpc_test.py | 153 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.py | 92 cygrpc.CallError.ok, cygrpc.CompletionType.operation_complete, True)
|
/external/grpc-grpc/src/ruby/spec/generic/ |
D | rpc_desc_spec.rb | 24 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/ |
D | records.pyx.pxi | 83 class CallError: class
|