Searched refs:InteropClient (Results 1 – 10 of 10) sorted by relevance
/external/grpc-grpc/test/cpp/interop/ |
D | client.cc | 105 grpc::testing::InteropClient client(channel_creation_func, true, in main() 110 std::bind(&grpc::testing::InteropClient::DoEmpty, &client); in main() 112 std::bind(&grpc::testing::InteropClient::DoLargeUnary, &client); in main() 114 &grpc::testing::InteropClient::DoServerCompressedUnary, &client); in main() 116 &grpc::testing::InteropClient::DoClientCompressedUnary, &client); in main() 118 std::bind(&grpc::testing::InteropClient::DoRequestStreaming, &client); in main() 120 std::bind(&grpc::testing::InteropClient::DoResponseStreaming, &client); in main() 122 &grpc::testing::InteropClient::DoServerCompressedStreaming, &client); in main() 124 &grpc::testing::InteropClient::DoClientCompressedStreaming, &client); in main() 126 &grpc::testing::InteropClient::DoResponseStreamingWithSlowConsumer, in main() [all …]
|
D | interop_client.cc | 77 InteropClient::ServiceStub::ServiceStub( in ServiceStub() 89 TestService::Stub* InteropClient::ServiceStub::Get() { in Get() 98 InteropClient::ServiceStub::GetUnimplementedServiceStub() { in GetUnimplementedServiceStub() 105 void InteropClient::ServiceStub::ResetChannel() { in ResetChannel() 112 InteropClient::InteropClient(ChannelCreationFunc channel_creation_func, in InteropClient() function in grpc::testing::InteropClient 118 bool InteropClient::AssertStatusOk(const Status& s, in AssertStatusOk() 131 bool InteropClient::AssertStatusCode( in AssertStatusCode() 153 bool InteropClient::DoEmpty() { in DoEmpty() 170 bool InteropClient::PerformLargeUnary(SimpleRequest* request, in PerformLargeUnary() 175 bool InteropClient::PerformLargeUnary(SimpleRequest* request, in PerformLargeUnary() [all …]
|
D | interop_client.h | 39 class InteropClient { 45 explicit InteropClient(ChannelCreationFunc channel_creation_func, 48 ~InteropClient() {} in ~InteropClient()
|
D | stress_interop_client.h | 109 std::unique_ptr<InteropClient> interop_client_;
|
D | stress_interop_client.cc | 77 interop_client_(new InteropClient(channel_creation_func_, false, in StressTestInteropClient()
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | InteropClientServerTest.cs | 71 InteropClient.RunEmptyUnary(client); in EmptyUnary() 77 InteropClient.RunLargeUnary(client); in LargeUnary() 83 await InteropClient.RunClientStreamingAsync(client); in ClientStreaming() 89 await InteropClient.RunServerStreamingAsync(client); in ServerStreaming() 95 await InteropClient.RunPingPongAsync(client); in PingPong() 101 await InteropClient.RunEmptyStreamAsync(client); in EmptyStream() 107 await InteropClient.RunCancelAfterBeginAsync(client); in CancelAfterBegin() 113 await InteropClient.RunCancelAfterFirstResponseAsync(client); in CancelAfterFirstResponse() 119 await InteropClient.RunTimeoutOnSleepingServerAsync(client); in TimeoutOnSleepingServer() 125 await InteropClient.RunCustomMetadataAsync(client); in CustomMetadata() [all …]
|
D | StressTestClient.cs | 161 InteropClient.RunEmptyUnary(client); in RunTestCaseAsync() 164 InteropClient.RunLargeUnary(client); in RunTestCaseAsync() 167 await InteropClient.RunClientStreamingAsync(client); in RunTestCaseAsync() 170 await InteropClient.RunServerStreamingAsync(client); in RunTestCaseAsync() 173 await InteropClient.RunPingPongAsync(client); in RunTestCaseAsync() 176 await InteropClient.RunEmptyStreamAsync(client); in RunTestCaseAsync() 179 await InteropClient.RunCancelAfterBeginAsync(client); in RunTestCaseAsync() 182 await InteropClient.RunCancelAfterFirstResponseAsync(client); in RunTestCaseAsync() 185 await InteropClient.RunTimeoutOnSleepingServerAsync(client); in RunTestCaseAsync() 188 await InteropClient.RunCustomMetadataAsync(client); in RunTestCaseAsync() [all …]
|
D | InteropClient.cs | 41 public class InteropClient class 77 private InteropClient(ClientOptions options) in InteropClient() method in Grpc.IntegrationTesting.InteropClient 89 var interopClient = new InteropClient(options); in Run()
|
/external/grpc-grpc/src/android/test/interop/app/src/main/cpp/ |
D | grpc-interop.cc | 34 std::shared_ptr<grpc::testing::InteropClient> GetClient(const char* host, in GetClient() 50 return std::shared_ptr<grpc::testing::InteropClient>( in GetClient() 51 new grpc::testing::InteropClient(channel_creation_func, true, false)); in GetClient()
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting.Client/ |
D | Program.cs | 28 InteropClient.Run(args); in Main()
|