/external/grpc-grpc/src/csharp/Grpc.Core/Interceptors/ |
D | InterceptingCallInvoker.cs | 68 …public override AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(… in AsyncServerStreamingCall() method in Grpc.Core.Interceptors.InterceptingCallInvoker 70 return interceptor.AsyncServerStreamingCall( in AsyncServerStreamingCall() 73 … (req, ctx) => invoker.AsyncServerStreamingCall(ctx.Method, ctx.Host, ctx.Options, req)); in AsyncServerStreamingCall()
|
D | Interceptor.cs | 104 …public delegate AsyncServerStreamingCall<TResponse> AsyncServerStreamingCallContinuation<TRequest,… 232 …public virtual AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(T…
|
D | CallInvokerExtensions.cs | 127 …public override AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(… in AsyncServerStreamingCall() method in Grpc.Core.Interceptors.CallInvokerExtensions.MetadataInterceptor
|
/external/grpc-grpc/src/csharp/Grpc.Core.Testing/ |
D | TestCalls.cs | 57 public static AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TResponse>( in AsyncServerStreamingCall() method in Grpc.Core.Testing.TestCalls 61 …return new AsyncServerStreamingCall<TResponse>(responseStream, responseHeadersAsync, getStatusFunc… in AsyncServerStreamingCall()
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | DefaultCallInvoker.cs | 63 …public override AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(… in AsyncServerStreamingCall() method in Grpc.Core.DefaultCallInvoker 66 return Calls.AsyncServerStreamingCall(call, request); in AsyncServerStreamingCall()
|
D | Calls.cs | 74 …public static AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(Ca… 81 …return new AsyncServerStreamingCall<TResponse>(responseStream, asyncCall.ResponseHeadersAsync, asy…
|
D | AsyncServerStreamingCall.cs | 28 public sealed class AsyncServerStreamingCall<TResponse> : IDisposable class 44 public AsyncServerStreamingCall(IAsyncStreamReader<TResponse> responseStream, in AsyncServerStreamingCall() method in Grpc.Core.AsyncServerStreamingCall
|
D | CallInvoker.cs | 48 …public abstract AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(…
|
D | ClientBase.cs | 182 …public override AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(… in AsyncServerStreamingCall() method in Grpc.Core.ClientBase.ClientBaseConfiguration.ClientBaseConfigurationInterceptor
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | UnimplementedCallInvoker.cs | 45 …public override AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(… in AsyncServerStreamingCall() method in Grpc.Core.Internal.UnimplementedCallInvoker
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | MetricsGrpc.cs | 121 …public virtual grpc::AsyncServerStreamingCall<global::Grpc.Testing.GaugeResponse> GetAllGauges(glo… in GetAllGauges() 132 …public virtual grpc::AsyncServerStreamingCall<global::Grpc.Testing.GaugeResponse> GetAllGauges(glo… in GetAllGauges() 134 return CallInvoker.AsyncServerStreamingCall(__Method_GetAllGauges, null, options, request); in GetAllGauges()
|
D | BenchmarkServiceGrpc.cs | 271 …public virtual grpc::AsyncServerStreamingCall<global::Grpc.Testing.SimpleResponse> StreamingFromSe… in StreamingFromServer() 282 …public virtual grpc::AsyncServerStreamingCall<global::Grpc.Testing.SimpleResponse> StreamingFromSe… in StreamingFromServer() 284 … return CallInvoker.AsyncServerStreamingCall(__Method_StreamingFromServer, null, options, request); in StreamingFromServer()
|
D | TestGrpc.cs | 385 …public virtual grpc::AsyncServerStreamingCall<global::Grpc.Testing.StreamingOutputCallResponse> St… in StreamingOutputCall() 396 …public virtual grpc::AsyncServerStreamingCall<global::Grpc.Testing.StreamingOutputCallResponse> St… in StreamingOutputCall() 398 … return CallInvoker.AsyncServerStreamingCall(__Method_StreamingOutputCall, null, options, request); in StreamingOutputCall()
|
/external/grpc-grpc/src/csharp/Grpc.Examples/ |
D | MathGrpc.cs | 234 …public virtual grpc::AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.FibArgs request, … in Fib() 246 …public virtual grpc::AsyncServerStreamingCall<global::Math.Num> Fib(global::Math.FibArgs request, … in Fib() 248 return CallInvoker.AsyncServerStreamingCall(__Method_Fib, null, options, request); in Fib()
|
/external/grpc-grpc/examples/csharp/RouteGuide/RouteGuide/ |
D | RouteGuideGrpc.cs | 240 …public virtual grpc::AsyncServerStreamingCall<global::Routeguide.Feature> ListFeatures(global::Rou… in ListFeatures() 255 …public virtual grpc::AsyncServerStreamingCall<global::Routeguide.Feature> ListFeatures(global::Rou… in ListFeatures() 257 return CallInvoker.AsyncServerStreamingCall(__Method_ListFeatures, null, options, request); in ListFeatures()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | ResponseHeadersTest.cs | 109 var call = Calls.AsyncServerStreamingCall(helper.CreateServerStreamingCall(), ""); in ResponseHeadersAsync_ServerStreamingCall() 187 var call = Calls.AsyncServerStreamingCall(helper.CreateServerStreamingCall(), ""); in WriteResponseHeaders_NotAllowedAfterWrite()
|
D | ClientServerTest.cs | 197 var call = Calls.AsyncServerStreamingCall(helper.CreateServerStreamingCall(), "A B C"); in ServerStreamingCall() 209 var call = Calls.AsyncServerStreamingCall(helper.CreateServerStreamingCall(), ""); in ServerStreamingCall_EndOfStreamIsIdempotent() 224 var call = Calls.AsyncServerStreamingCall(helper.CreateServerStreamingCall(), ""); in ServerStreamingCall_ErrorCanBeAwaitedTwice() 243 var call = Calls.AsyncServerStreamingCall(helper.CreateServerStreamingCall(), ""); in ServerStreamingCall_TrailersFromMultipleSourcesGetConcatenated()
|
D | MarshallingErrorsTest.cs | 99 … var call = Calls.AsyncServerStreamingCall(helper.CreateServerStreamingCall(), "REQUEST"); in ResponseParsingError_StreamingResponse()
|
D | CallCancellationTest.cs | 162 var call = Calls.AsyncServerStreamingCall(helper.CreateServerStreamingCall(), ""); in ServerStreamingCall_CancelClientSideRead()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Interceptors/ |
D | ClientInterceptorTest.cs | 154 …public override AsyncServerStreamingCall<TResponse> AsyncServerStreamingCall<TRequest, TResponse>(… in AsyncServerStreamingCall() method in Grpc.Core.Interceptors.Tests.ClientInterceptorTest.CallbackInterceptor
|
/external/grpc-grpc/src/csharp/Grpc.Examples.Tests/ |
D | MathClientMockableTest.cs | 83 …var fakeCall = TestCalls.AsyncServerStreamingCall<Num>(mockResponseStream.Object, Task.FromResult(… in ClientBaseServerStreamingCallCanBeMocked()
|