Home
last modified time | relevance | path

Searched refs:HalfDuplexCall (Results 1 – 14 of 14) sorted by relevance

/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/
D_python_plugin_test.py108 def HalfDuplexCall(self, request_iter, unused_rpc_context): member in _ServicerMethods
158 def HalfDuplexCall(self, request_iter, context): member in _CreateService.Servicer
159 return servicer_methods.HalfDuplexCall(request_iter, context)
462 responses = service.stub.HalfDuplexCall(half_duplex_request_iterator())
463 expected_responses = service.servicer_methods.HalfDuplexCall(
494 responses = service.stub.HalfDuplexCall(
Dbeta_python_plugin_test.py176 def HalfDuplexCall(self, request_iter, unused_rpc_context): member in _ServicerMethods
217 def HalfDuplexCall(self, request_iter, context): member in _CreateService.Servicer
218 return servicer_methods.HalfDuplexCall(request_iter, context)
619 responses = stub.HalfDuplexCall(half_duplex_request_iterator(),
621 expected_responses = methods.HalfDuplexCall(
654 responses = stub.HalfDuplexCall(half_duplex_request_iterator(),
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DTestServiceClient.php131 public function HalfDuplexCall($metadata = [], $options = []) { function in Grpc\\Testing\\TestServiceClient
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DTestGrpc.cs194 …public virtual global::System.Threading.Tasks.Task HalfDuplexCall(grpc::IAsyncStreamReader<global:… in HalfDuplexCall() method in Grpc.Testing.TestService.TestServiceBase
456 …OutputCallRequest, global::Grpc.Testing.StreamingOutputCallResponse> HalfDuplexCall(grpc::Metadata… in HalfDuplexCall() method in Grpc.Testing.TestService.TestServiceClient
458 return HalfDuplexCall(new grpc::CallOptions(headers, deadline, cancellationToken)); in HalfDuplexCall()
468 …OutputCallRequest, global::Grpc.Testing.StreamingOutputCallResponse> HalfDuplexCall(grpc::CallOpti… in HalfDuplexCall() method in Grpc.Testing.TestService.TestServiceClient
538 .AddMethod(__Method_HalfDuplexCall, serviceImpl.HalfDuplexCall) in BindService()
DTestServiceImpl.cs89 …public override Task HalfDuplexCall(IAsyncStreamReader<StreamingOutputCallRequest> requestStream, … in HalfDuplexCall() method in Grpc.Testing.TestServiceImpl
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/service/
Dtest_service.proto47 rpc HalfDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc/src/objective-c/examples/RemoteTestClient/
Dtest.proto55 rpc HalfDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc/src/objective-c/tests/RemoteTestClient/
Dtest.proto55 rpc HalfDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/
Dtest.proto59 rpc HalfDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc/src/proto/grpc/testing/
Dtest.proto60 rpc HalfDuplexCall(stream StreamingOutputCallRequest) rpc
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/
Dtest.proto60 rpc HalfDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc/test/cpp/interop/
Dinterop_server.cc289 Status HalfDuplexCall( in HalfDuplexCall() function in TestServiceImpl
Dinterop_client.cc634 stream(serviceStub_.Get()->HalfDuplexCall(&context)); in DoHalfDuplex()
/external/grpc-grpc/src/python/grpcio_tests/tests/interop/
Dmethods.py98 def HalfDuplexCall(self, request_iterator, context): member in TestService