/third_party/grpc/src/csharp/Grpc.Core.Tests/ |
D | CompressionTest.cs | 92 Assert.IsTrue((call.RequestStream.WriteOptions.Flags & WriteFlags.NoCompress) != 0); in WriteOptions_DuplexStreaming() 94 call.RequestStream.WriteOptions = new WriteOptions(); in WriteOptions_DuplexStreaming() 95 await call.RequestStream.WriteAsync("A"); in WriteOptions_DuplexStreaming() 97 call.RequestStream.WriteOptions = null; in WriteOptions_DuplexStreaming() 98 await call.RequestStream.WriteAsync("B"); in WriteOptions_DuplexStreaming() 100 call.RequestStream.WriteOptions = new WriteOptions(WriteFlags.NoCompress); in WriteOptions_DuplexStreaming() 101 await call.RequestStream.WriteAsync("C"); in WriteOptions_DuplexStreaming() 103 await call.RequestStream.CompleteAsync(); in WriteOptions_DuplexStreaming()
|
D | MarshallingErrorsTest.cs | 135 await call.RequestStream.WriteAsync("UNPARSEABLE_VALUE"); in RequestParsingError_StreamingRequest() 161 await call.RequestStream.WriteAsync("A"); in RequestSerializationError_ClientStreaming() 162 …Assert.ThrowsAsync<IOException>(async () => await call.RequestStream.WriteAsync("UNSERIALIZABLE_VA… in RequestSerializationError_ClientStreaming() 163 await call.RequestStream.WriteAsync("B"); in RequestSerializationError_ClientStreaming() 164 await call.RequestStream.CompleteAsync(); in RequestSerializationError_ClientStreaming()
|
D | HalfcloseTest.cs | 76 await call.RequestStream.CompleteAsync(); in HalfcloseAfterFullclose_ClientStreamingCall() 79 …ThrowsAsync(typeof(InvalidOperationException), async () => await call.RequestStream.CompleteAsync(… in HalfcloseAfterFullclose_ClientStreamingCall()
|
D | ResponseHeadersTest.cs | 93 await call.RequestStream.CompleteAsync(); in ResponseHeadersAsync_ClientStreamingCall() 132 await call.RequestStream.WriteAllAsync(messages); in ResponseHeadersAsync_DuplexStreamingCall()
|
D | ContextPropagationTest.cs | 131 await call.RequestStream.CompleteAsync(); in PropagateDeadline() 154 await call.RequestStream.CompleteAsync(); in SuppressDeadlinePropagation()
|
D | ClientServerTest.cs | 201 await call.RequestStream.WriteAllAsync(new string[] { "A", "B", "C" }); in ClientStreamingCall() 288 await call.RequestStream.WriteAllAsync(new string[] { "A", "B", "C" }); in DuplexStreamingCall()
|
/third_party/grpc/src/csharp/Grpc.IntegrationTesting/ |
D | InteropClient.cs | 235 await call.RequestStream.WriteAllAsync(bodySizes); in RunClientStreamingAsync() 268 await call.RequestStream.WriteAsync(new StreamingOutputCallRequest in RunPingPongAsync() 277 await call.RequestStream.WriteAsync(new StreamingOutputCallRequest in RunPingPongAsync() 286 await call.RequestStream.WriteAsync(new StreamingOutputCallRequest in RunPingPongAsync() 295 await call.RequestStream.WriteAsync(new StreamingOutputCallRequest in RunPingPongAsync() 304 await call.RequestStream.CompleteAsync(); in RunPingPongAsync() 316 await call.RequestStream.CompleteAsync(); in RunEmptyStreamAsync() 427 await call.RequestStream.WriteAsync(new StreamingOutputCallRequest in RunCancelAfterFirstResponseAsync() 461 …await call.RequestStream.WriteAsync(new StreamingOutputCallRequest { Payload = CreateZerosPayload(… in RunTimeoutOnSleepingServerAsync() 516 await call.RequestStream.WriteAsync(request); in RunCustomMetadataAsync() [all …]
|
D | ClientRunners.cs | 263 await call.RequestStream.WriteAsync(request); in RunStreamingPingPongAsync() 274 await call.RequestStream.CompleteAsync(); in RunStreamingPingPongAsync() 291 await call.RequestStream.WriteAsync(request); in RunGenericStreamingAsync() 302 await call.RequestStream.CompleteAsync(); in RunGenericStreamingAsync()
|
D | SslCredentialsTest.cs | 257 await call.RequestStream.CompleteAsync(); in CheckAuthContextIsPopulated()
|
/third_party/grpc/test/cpp/end2end/ |
D | exception_test.cc | 46 Status RequestStream(ServerContext* /*context*/, in RequestStream() function in grpc::testing::ExceptingServiceImpl 99 TEST_F(ExceptionTest, RequestStream) { in TEST_F() argument 105 auto stream = stub_->RequestStream(&context, &response); in TEST_F()
|
D | server_early_return_test.cc | 51 Status RequestStream(ServerContext* context, in RequestStream() function in grpc::testing::__anon86206e540111::TestServiceImpl 190 auto stream = stub_->RequestStream(&context, &response); in DoRequestStream()
|
D | test_service_impl.h | 258 Status RequestStream(ServerContext* context, in RequestStream() function 451 experimental::ServerReadReactor<EchoRequest>* RequestStream(
|
D | mock_test.cc | 88 stub_->RequestStream(&context, &response); in DoRequestStream() 255 Status RequestStream(ServerContext* /*context*/, in RequestStream() function in grpc::testing::__anonc912ef6c0111::TestServiceImpl
|
D | end2end_test.cc | 518 auto stream = stub_->RequestStream(&context, &response); in TestRequestStreamServerCancel() 907 auto stream = stub_->RequestStream(&context, &response); in TEST_P() 924 auto stream = stub_->RequestStream(&context, &response); in TEST_P() 938 auto stream = stub_->RequestStream(&context, &response); in TEST_P() 954 auto stream = stub_->RequestStream(&context, &response); in TEST_P() 971 auto stream = stub_->RequestStream(&context, &response); in TEST_P() 1210 auto stream = stub_->RequestStream(&context, &response); in TEST_P()
|
D | interceptors_util.cc | 50 auto writer = stub->RequestStream(&ctx, &resp); in MakeClientStreamingCall()
|
/third_party/grpc/examples/csharp/RouteGuide/RouteGuideClient/ |
D | Program.cs | 125 await call.RequestStream.WriteAsync(point); in RecordRoute() 130 await call.RequestStream.CompleteAsync(); in RecordRoute() 181 await call.RequestStream.WriteAsync(request); in RouteChat() 183 await call.RequestStream.CompleteAsync(); in RouteChat()
|
/third_party/grpc/src/csharp/Grpc.Examples/ |
D | MathExamples.cs | 59 await call.RequestStream.WriteAllAsync(numbers); in SumExample() 75 await call.RequestStream.WriteAllAsync(divArgsList); in DivManyExample() 92 await sumCall.RequestStream.WriteAllAsync(numbers); in DependentRequestsExample()
|
/third_party/grpc/src/proto/grpc/testing/ |
D | echo.proto | 32 rpc RequestStream(stream EchoRequest) returns (EchoResponse); rpc 45 rpc RequestStream(stream EchoRequest) returns (EchoResponse); rpc 58 rpc RequestStream(stream EchoRequest) returns (EchoResponse); rpc
|
/third_party/grpc/src/csharp/Grpc.Reflection.Tests/ |
D | ReflectionClientServerTest.cs | 131 await call.RequestStream.WriteAsync(request); in SingleRequestAsync() 135 await call.RequestStream.CompleteAsync(); in SingleRequestAsync()
|
/third_party/grpc/src/csharp/Grpc.Examples.Tests/ |
D | MathClientServerTests.cs | 151 await call.RequestStream.WriteAllAsync(numbers); in Sum() 169 await call.RequestStream.WriteAllAsync(divArgsList); in DivMany()
|
/third_party/grpc/src/csharp/Grpc.Core.Api/ |
D | AsyncDuplexStreamingCall.cs | 93 public IClientStreamWriter<TRequest> RequestStream property in Grpc.Core.AsyncDuplexStreamingCall
|
D | AsyncClientStreamingCall.cs | 105 public IClientStreamWriter<TRequest> RequestStream property in Grpc.Core.AsyncClientStreamingCall
|
/third_party/grpc/src/csharp/Grpc.Core.Tests/Interceptors/ |
D | ClientInterceptorTest.cs | 126 await call.RequestStream.WriteAllAsync(new string[] { "A", "B", "C" }); in CountNumberOfRequestsInClientInterceptors() 179 var requestStream = new WrappedClientStreamWriter<TRequest>(response.RequestStream, in AsyncClientStreamingCall()
|
/third_party/grpc/test/cpp/ios/CronetTests/ |
D | TestHelper.h | 67 grpc::Status RequestStream(
|
D | CppCronetEnd2EndTests.mm | 210 auto stream = stub->RequestStream(&context, &response); 226 auto stream = stub->RequestStream(&context, &response); 240 auto stream = stub->RequestStream(&context, &response); 344 auto stream = stub->RequestStream(&context, &response);
|