/external/grpc-grpc/src/python/grpcio_tests/tests/interop/ |
D | methods.py | 86 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.py | 99 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)
|
D | beta_python_plugin_test.py | 167 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/ |
D | interop_client.php | 301 $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/ |
D | InteropClient.cs | 263 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()
|
D | GeneratedClientTest.cs | 57 … Assert.Throws(typeof(NotImplementedException), () => unimplementedClient.FullDuplexCall()); in DefaultMethodStubThrows_DuplexStreaming()
|
D | GeneratedServiceBaseTest.cs | 88 var call = client.FullDuplexCall(); in UnimplementedByDefault_DuplexStreamingCall()
|
D | TestGrpc.cs | 179 …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()
|
D | TestServiceImpl.cs | 74 …public override async Task FullDuplexCall(IAsyncStreamReader<StreamingOutputCallRequest> requestSt… in FullDuplexCall() method in Grpc.Testing.TestServiceImpl
|
/external/grpc-grpc/doc/ |
D | interop-test-descriptions.md | 430 * [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/ |
D | TestServiceClient.php | 117 public function FullDuplexCall($metadata = [], $options = []) { function in Grpc\\Testing\\TestServiceClient
|
/external/grpc-grpc/test/cpp/interop/ |
D | interop_client.cc | 681 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()
|
D | interop_server.cc | 253 Status FullDuplexCall( in FullDuplexCall() function in TestServiceImpl
|
/external/grpc-grpc/src/python/grpcio_tests/tests/protoc_plugin/protos/service/ |
D | test_service.proto | 40 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
|
/external/grpc-grpc/src/objective-c/tests/RemoteTestClient/ |
D | test.proto | 48 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
|
/external/grpc-grpc/src/objective-c/examples/RemoteTestClient/ |
D | test.proto | 48 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
|
/external/grpc-grpc/src/objective-c/tests/Connectivity/ConnectivityTestingApp/ |
D | ViewController.m | 81 method:@"FullDuplexCall"];
|
/external/grpc-grpc/src/proto/grpc/testing/ |
D | test.proto | 53 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
|
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/ |
D | test.proto | 52 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
|
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/ |
D | test.proto | 53 rpc FullDuplexCall(stream StreamingOutputCallRequest) rpc
|
/external/grpc-grpc/src/python/grpcio_tests/tests/fork/ |
D | methods.py | 290 parent_bidi_call = stub.FullDuplexCall(pipe)
|
/external/grpc-grpc/src/objective-c/tests/ |
D | GRPCClientTests.m | 120 [[GRPCProtoMethod alloc] initWithPackage:kPackage service:kService method:@"FullDuplexCall"];
|