Home
last modified time | relevance | path

Searched refs:EmptyCall (Results 1 – 15 of 15) sorted by relevance

/external/grpc-grpc/src/php/tests/qps/generated_code/Grpc/Testing/
DTestServiceClient.php45 public function EmptyCall(\Grpc\Testing\PBEmpty $argument, function in Grpc\\Testing\\TestServiceClient
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/
DTestGrpc.cs116 …public virtual global::System.Threading.Tasks.Task<global::Grpc.Testing.Empty> EmptyCall(global::G… in EmptyCall() method in Grpc.Testing.TestService.TestServiceBase
244 …public virtual global::Grpc.Testing.Empty EmptyCall(global::Grpc.Testing.Empty request, grpc::Meta… in EmptyCall() method in Grpc.Testing.TestService.TestServiceClient
246 return EmptyCall(request, new grpc::CallOptions(headers, deadline, cancellationToken)); in EmptyCall()
254 …public virtual global::Grpc.Testing.Empty EmptyCall(global::Grpc.Testing.Empty request, grpc::Call… in EmptyCall() method in Grpc.Testing.TestService.TestServiceClient
532 .AddMethod(__Method_EmptyCall, serviceImpl.EmptyCall) in BindService()
DTestServiceImpl.cs35 public override Task<Empty> EmptyCall(Empty request, ServerCallContext context) in EmptyCall() method in Grpc.Testing.TestServiceImpl
DInteropClient.cs205 var response = client.EmptyCall(new Empty()); in RunEmptyUnary()
/external/grpc-grpc/src/objective-c/examples/RemoteTestClient/
Dtest.proto30 rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty); rpc
/external/grpc-grpc/src/objective-c/tests/RemoteTestClient/
Dtest.proto30 rpc EmptyCall(google.protobuf.Empty) returns (google.protobuf.Empty); rpc
/external/grpc-grpc/src/python/grpcio_tests/tests/interop/
Dmethods.py58 def EmptyCall(self, request, context): member in TestService
145 response = stub.EmptyCall(empty_pb2.Empty())
/external/grpc-grpc-java/interop-testing/src/main/proto/grpc/testing/
Dtest.proto29 rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty); rpc
/external/grpc-grpc/src/proto/grpc/testing/
Dtest.proto30 rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty); rpc
/external/grpc-grpc/doc/
Dinterop-test-descriptions.md51 * [EmptyCall][]
54 1. Client calls EmptyCall with the default Empty message
60 *It may be possible to use UnaryCall instead of EmptyCall, but it is harder to
1030 ### EmptyCall subsection
1031 [EmptyCall]: #emptycall argument
1033 Server implements EmptyCall which immediately returns the empty message.
/external/rust/crates/grpcio-sys/grpc/src/proto/grpc/testing/
Dtest.proto30 rpc EmptyCall(grpc.testing.Empty) returns (grpc.testing.Empty); rpc
/external/grpc-grpc/test/cpp/interop/
Dinterop_server.cc141 Status EmptyCall(ServerContext* context, const grpc::testing::Empty* request, in EmptyCall() function in TestServiceImpl
Dinterop_client.cc160 Status s = serviceStub_.Get()->EmptyCall(&context, request, &response); in DoEmpty()
/external/grpc-grpc/src/php/tests/interop/
Dinterop_client.php62 $stub->EmptyCall(new Grpc\Testing\EmptyMessage())->wait();
/external/grpc-grpc/src/objective-c/tests/
DGRPCClientTests.m116 [[GRPCProtoMethod alloc] initWithPackage:kPackage service:kService method:@"EmptyCall"];