Home
last modified time | relevance | path

Searched refs:FullDuplexCall (Results 1 – 22 of 22) sorted by relevance

/external/grpc-grpc/src/python/grpcio_tests/tests/interop/
Dmethods.py86 def FullDuplexCall(self, request_iterator, context): member in TestService
99 return self.FullDuplexCall(request_iterator, context)
248 response_iterator = stub.FullDuplexCall(pipe)
286 response_iterator = stub.FullDuplexCall(pipe)
313 response_iterator = stub.FullDuplexCall(pipe, timeout=0.001)
330 response_iterator = stub.FullDuplexCall(pipe)
355 response_iterator = stub.FullDuplexCall(pipe)
406 response_iterator = stub.FullDuplexCall(pipe, metadata=metadata)
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/
D_python_plugin_test.py99 def FullDuplexCall(self, request_iter, unused_rpc_context): member in _ServicerMethods
155 def FullDuplexCall(self, request_iter, context): member in _CreateService.Servicer
156 return servicer_methods.FullDuplexCall(request_iter, context)
407 responses = service.stub.FullDuplexCall(_full_duplex_request_iterator())
408 expected_responses = service.servicer_methods.FullDuplexCall(
419 responses = service.stub.FullDuplexCall(
430 responses = service.stub.FullDuplexCall(request_iterator)
443 responses = service.stub.FullDuplexCall(request_iterator)
Dbeta_python_plugin_test.py167 def FullDuplexCall(self, request_iter, unused_rpc_context): member in _ServicerMethods
214 def FullDuplexCall(self, request_iter, context): member in _CreateService.Servicer
215 return servicer_methods.FullDuplexCall(request_iter, context)
556 responses = stub.FullDuplexCall(
559 expected_responses = methods.FullDuplexCall(
573 responses = stub.FullDuplexCall(request_iterator,
584 responses = stub.FullDuplexCall(request_iterator,
598 responses = stub.FullDuplexCall(request_iterator,
/external/grpc-grpc/src/php/tests/interop/
Dinterop_client.php301 $call = $stub->FullDuplexCall();
335 $call = $stub->FullDuplexCall();
362 $call = $stub->FullDuplexCall();
382 $call = $stub->FullDuplexCall([], ['timeout' => 1000]);
439 $streaming_call = $stub->FullDuplexCall($metadata);
486 $streaming_call = $stub->FullDuplexCall();
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DInteropClient.cs263 using (var call = client.FullDuplexCall()) in RunPingPongAsync()
311 using (var call = client.FullDuplexCall()) in RunEmptyStreamAsync()
422 using (var call = client.FullDuplexCall(cancellationToken: cts.Token)) in RunCancelAfterFirstResponseAsync()
454 using (var call = client.FullDuplexCall(deadline: deadline)) in RunTimeoutOnSleepingServerAsync()
512 var call = client.FullDuplexCall(headers: CreateTestMetadata()); in RunCustomMetadataAsync()
550 var call = client.FullDuplexCall(); in RunStatusCodeAndMessageAsync()
DGeneratedClientTest.cs57 … Assert.Throws(typeof(NotImplementedException), () => unimplementedClient.FullDuplexCall()); in DefaultMethodStubThrows_DuplexStreaming()
DGeneratedServiceBaseTest.cs88 var call = client.FullDuplexCall(); in UnimplementedByDefault_DuplexStreamingCall()
DTestGrpc.cs179 …public virtual global::System.Threading.Tasks.Task FullDuplexCall(grpc::IAsyncStreamReader<global:… in FullDuplexCall() method in Grpc.Testing.TestService.TestServiceBase
431 …OutputCallRequest, global::Grpc.Testing.StreamingOutputCallResponse> FullDuplexCall(grpc::Metadata… in FullDuplexCall() method in Grpc.Testing.TestService.TestServiceClient
433 return FullDuplexCall(new grpc::CallOptions(headers, deadline, cancellationToken)); in FullDuplexCall()
442 …OutputCallRequest, global::Grpc.Testing.StreamingOutputCallResponse> FullDuplexCall(grpc::CallOpti… in FullDuplexCall() method in Grpc.Testing.TestService.TestServiceClient
537 .AddMethod(__Method_FullDuplexCall, serviceImpl.FullDuplexCall) in BindService()
DTestServiceImpl.cs74 …public override async Task FullDuplexCall(IAsyncStreamReader<StreamingOutputCallRequest> requestSt… in FullDuplexCall() method in Grpc.Testing.TestServiceImpl
/external/grpc-grpc/doc/
Dinterop-test-descriptions.md430 * [FullDuplexCall][]
433 1. Client calls FullDuplexCall with:
500 * [FullDuplexCall][]
503 1. Client calls FullDuplexCall and then half-closes
691 * [FullDuplexCall][]
720 to a FullDuplexCall with request:
752 * [FullDuplexCall][]
767 2. Client calls FullDuplexCall with:
869 * [FullDuplexCall][]
872 1. Client starts FullDuplexCall with
[all …]
/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DTestServiceClient.php117 public function FullDuplexCall($metadata = [], $options = []) { function in Grpc\\Testing\\TestServiceClient
/external/grpc-grpc/test/cpp/interop/
Dinterop_client.cc681 stream(serviceStub_.Get()->FullDuplexCall(&context)); in DoPingPong()
748 stream(serviceStub_.Get()->FullDuplexCall(&context)); in DoCancelAfterFirstResponse()
785 stream(serviceStub_.Get()->FullDuplexCall(&context)); in DoTimeoutOnSleepingServer()
807 stream(serviceStub_.Get()->FullDuplexCall(&context)); in DoEmptyStream()
846 stream(serviceStub_.Get()->FullDuplexCall(&stream_context)); in DoStatusWithMessage()
976 stream(serviceStub_.Get()->FullDuplexCall(&context)); in DoCustomMetadata()
Dinterop_server.cc253 Status FullDuplexCall( in FullDuplexCall() function in TestServiceImpl
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/service/
Dtest_service.proto40 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc/src/objective-c/tests/RemoteTestClient/
Dtest.proto48 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc/src/objective-c/examples/RemoteTestClient/
Dtest.proto48 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc/src/objective-c/tests/Connectivity/ConnectivityTestingApp/
DViewController.m81 method:@"FullDuplexCall"];
/external/grpc-grpc/src/proto/grpc/testing/
Dtest.proto53 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/
Dtest.proto52 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/
Dtest.proto53 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
/external/grpc-grpc/src/python/grpcio_tests/tests/fork/
Dmethods.py290 parent_bidi_call = stub.FullDuplexCall(pipe)
/external/grpc-grpc/src/objective-c/tests/
DGRPCClientTests.m120 [[GRPCProtoMethod alloc] initWithPackage:kPackage service:kService method:@"FullDuplexCall"];