/external/grpc-grpc-java/testing/src/test/java/io/grpc/testing/ |
D | GrpcServerRuleTest.java | 56 TestServiceImpl testService = new TestServiceImpl(); in serverAllowsServicesToBeAddedViaServiceRegistry_withoutDirectExecutor() 75 TestServiceImpl testService = new TestServiceImpl(); in serviceIsNotRunOnSameThreadAsTest_withoutDirectExecutor() 106 TestServiceImpl testService = new TestServiceImpl(); in serverAllowsServicesToBeAddedViaServiceRegistry_withDirectExecutor() 125 TestServiceImpl testService = new TestServiceImpl(); in serviceIsRunOnSameThreadAsTest_withDirectExecutor() 182 private static class TestServiceImpl extends SimpleServiceGrpc.SimpleServiceImplBase { class in GrpcServerRuleTest
|
/external/grpc-grpc/test/cpp/end2end/ |
D | test_service_impl.cc | 74 Status TestServiceImpl::Echo(ServerContext* context, const EchoRequest* request, in Echo() 170 Status TestServiceImpl::RequestStream(ServerContext* context, in RequestStream() 195 new std::thread(&TestServiceImpl::ServerTryCancel, this, context); in RequestStream() 220 Status TestServiceImpl::ResponseStream(ServerContext* context, in ResponseStream() 250 new std::thread(&TestServiceImpl::ServerTryCancel, this, context); in ResponseStream() 276 Status TestServiceImpl::BidiStream( in BidiStream() 301 new std::thread(&TestServiceImpl::ServerTryCancel, this, context); in BidiStream() 335 int TestServiceImpl::GetIntValueFromMetadata( in GetIntValueFromMetadata() 348 void TestServiceImpl::ServerTryCancel(ServerContext* context) { in ServerTryCancel()
|
D | hybrid_end2end_test.cc | 417 typedef EchoTestService::WithAsyncMethod_Echo<TestServiceImpl> SType; in TEST_F() 428 typedef EchoTestService::WithRawMethod_Echo<TestServiceImpl> SType; in TEST_F() 439 typedef EchoTestService::WithRawMethod_RequestStream<TestServiceImpl> SType; in TEST_F() 451 EchoTestService::WithAsyncMethod_Echo<TestServiceImpl>> in TEST_F() 467 EchoTestService::WithGenericMethod_Echo<TestServiceImpl>> in TEST_F() 484 EchoTestService::WithAsyncMethod_Echo<TestServiceImpl>> in TEST_F() 500 EchoTestService::WithAsyncMethod_ResponseStream<TestServiceImpl>> in TEST_F() 517 EchoTestService::WithAsyncMethod_ResponseStream<TestServiceImpl>> in TEST_F() 556 EchoTestService::WithAsyncMethod_ResponseStream<TestServiceImpl>> in TEST_F() 594 EchoTestService::WithAsyncMethod_ResponseStream<TestServiceImpl>> in TEST_F() [all …]
|
D | test_service_impl.h | 46 class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { 48 TestServiceImpl() : signal_client_(false), host_() {} in TestServiceImpl() function 49 explicit TestServiceImpl(const grpc::string& host) in TestServiceImpl() function
|
D | thread_stress_test.cc | 54 class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { class 56 TestServiceImpl() {} in TestServiceImpl() function in grpc::testing::TestServiceImpl 148 TestServiceImpl service_; 168 TestServiceImpl service_; 296 CommonStressTestSyncServer<CommonStressTestInsecure<TestServiceImpl>>, 297 CommonStressTestSyncServer<CommonStressTestInproc<TestServiceImpl, false>>, 299 CommonStressTestInproc<TestServiceImpl, true>>,
|
D | streaming_throughput_test.cc | 88 class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { class 116 std::bind(&TestServiceImpl::BidiStream_Sender, stream, &should_exit)); in BidiStream() 156 TestServiceImpl service_;
|
D | shutdown_test.cc | 45 class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { class 47 explicit TestServiceImpl(gpr_event* ev) : ev_(ev) {} in TestServiceImpl() function in grpc::testing::TestServiceImpl 116 TestServiceImpl service_;
|
D | server_builder_plugin_test.cc | 48 TestServerBuilderPlugin() : service_(new TestServiceImpl()) { in TestServerBuilderPlugin() 95 std::shared_ptr<TestServiceImpl> service_; 216 TestServiceImpl service_;
|
D | server_early_return_test.cc | 47 class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { class 211 TestServiceImpl service_;
|
D | mock_test.cc | 164 class TestServiceImpl : public EchoTestService::Service { class 255 TestServiceImpl service_;
|
D | client_callback_end2end_test.cc | 153 TestServiceImpl service_;
|
D | channelz_service_test.cc | 113 backends_[i].service.reset(new TestServiceImpl); in ConfigureProxy() 189 std::unique_ptr<TestServiceImpl> service;
|
D | health_service_end2end_test.cc | 221 TestServiceImpl echo_test_service_;
|
/external/grpc-grpc-java/interop-testing/src/main/java/io/grpc/testing/integration/ |
D | TestServiceServer.java | 137 new TestServiceImpl(executor), TestServiceImpl.interceptors())) in start() 153 new TestServiceImpl(executor), TestServiceImpl.interceptors())) in start()
|
D | TestServiceImpl.java | 58 public class TestServiceImpl extends TestServiceGrpc.TestServiceImplBase { class 70 public TestServiceImpl(ScheduledExecutorService executor) { in TestServiceImpl() method in TestServiceImpl
|
/external/grpc-grpc/test/cpp/util/ |
D | cli_call_test.cc | 41 class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { class 86 TestServiceImpl service_;
|
D | grpc_tool_test.cc | 130 class TestServiceImpl : public ::grpc::testing::EchoTestService::Service { class 256 TestServiceImpl service_;
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | InteropServer.cs | 71 Services = { TestService.BindService(new TestServiceImpl()) } in Run()
|
D | InteropClientServerTest.cs | 47 Services = { TestService.BindService(new TestServiceImpl()) }, in Init()
|
D | TestServiceImpl.cs | 33 public class TestServiceImpl : TestService.TestServiceBase class
|
/external/grpc-grpc/test/cpp/interop/ |
D | interop_server.cc | 139 class TestServiceImpl : public TestService::Service { class 345 TestServiceImpl service; in RunServer()
|
/external/grpc-grpc-java/android-interop-testing/app/ |
D | build.gradle | 11 "io/grpc/testing/integration/TestServiceImpl.java",
|
/external/grpc-grpc-java/interop-testing/src/test/java/io/grpc/testing/integration/ |
D | ConcurrencyTest.java | 204 .addService(new TestServiceImpl(serverExecutor)) in newServer()
|
D | NettyFlowControlTest.java | 182 new TestServiceImpl(Executors.newScheduledThreadPool(2)), in startServer()
|
/external/auto/value/src/it/gwtserializer/src/test/java/com/google/auto/value/client/ |
D | GwtSerializerTest.java | 82 public static class TestServiceImpl extends RemoteServiceServlet implements TestService { class in GwtSerializerTest
|