Home
last modified time | relevance | path

Searched refs:InteropClient (Results 1 – 12 of 12) sorted by relevance

/third_party/grpc/test/cpp/interop/
Dclient.cc203 grpc::testing::InteropClient client(channel_creation_func, true, in main()
208 std::bind(&grpc::testing::InteropClient::DoEmpty, &client); in main()
210 std::bind(&grpc::testing::InteropClient::DoLargeUnary, &client); in main()
212 &grpc::testing::InteropClient::DoServerCompressedUnary, &client); in main()
214 &grpc::testing::InteropClient::DoClientCompressedUnary, &client); in main()
216 std::bind(&grpc::testing::InteropClient::DoRequestStreaming, &client); in main()
218 std::bind(&grpc::testing::InteropClient::DoResponseStreaming, &client); in main()
220 &grpc::testing::InteropClient::DoServerCompressedStreaming, &client); in main()
222 &grpc::testing::InteropClient::DoClientCompressedStreaming, &client); in main()
224 &grpc::testing::InteropClient::DoResponseStreamingWithSlowConsumer, in main()
[all …]
Dinterop_client.cc82 InteropClient::ServiceStub::ServiceStub( in ServiceStub()
94 TestService::Stub* InteropClient::ServiceStub::Get() { in Get()
103 InteropClient::ServiceStub::GetUnimplementedServiceStub() { in GetUnimplementedServiceStub()
110 void InteropClient::ServiceStub::ResetChannel() { in ResetChannel()
117 InteropClient::InteropClient(ChannelCreationFunc channel_creation_func, in InteropClient() function in grpc::testing::InteropClient
123 bool InteropClient::AssertStatusOk(const Status& s, in AssertStatusOk()
136 bool InteropClient::AssertStatusCode(const Status& s, StatusCode expected_code, in AssertStatusCode()
157 bool InteropClient::DoEmpty() { in DoEmpty()
174 bool InteropClient::PerformLargeUnary(SimpleRequest* request, in PerformLargeUnary()
179 bool InteropClient::PerformLargeUnary(SimpleRequest* request, in PerformLargeUnary()
[all …]
Dinterop_client.h39 class InteropClient {
45 explicit InteropClient(ChannelCreationFunc channel_creation_func,
48 ~InteropClient() {} in ~InteropClient()
Dstress_interop_client.h109 std::unique_ptr<InteropClient> interop_client_;
Dstress_interop_client.cc77 interop_client_(new InteropClient(channel_creation_func_, false, in StressTestInteropClient()
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/
DInteropClientServerTest.cs71 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 …]
DStressTestClient.cs161 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 …]
DExternalDnsClientServerTest.cs71 InteropClient.RunEmptyUnary(client); in EmptyUnary()
DExternalDnsWithTracingClientServerTest.cs90 InteropClient.RunEmptyUnary(client); in EmptyUnary()
DInteropClient.cs41 public class InteropClient class
77 private InteropClient(ClientOptions options) in InteropClient() method in Grpc.IntegrationTesting.InteropClient
89 var interopClient = new InteropClient(options); in Run()
/third_party/grpc/src/android/test/interop/app/src/main/cpp/
Dgrpc-interop.cc25 std::shared_ptr<grpc::testing::InteropClient> GetClient(const char* host, in GetClient()
41 return std::shared_ptr<grpc::testing::InteropClient>( in GetClient()
42 new grpc::testing::InteropClient(channel_creation_func, true, false)); in GetClient()
/third_party/grpc/src/csharp/Grpc.IntegrationTesting.Client/
DProgram.cs28 InteropClient.Run(args); in Main()