Searched refs:callDetails (Results 1 – 6 of 6) sorted by relevance
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/ |
D | PerformanceTest.cs | 69 var callDetails = helper.CreateUnaryCall(); in UnaryCallPerformance() 72 Calls.BlockingUnaryCall(callDetails, "ABC"); in UnaryCallPerformance() 79 Calls.BlockingUnaryCall(callDetails, "ABC"); in UnaryCallPerformance()
|
D | ClientServerTest.cs | 319 …var callDetails = new CallInvocationDetails<string, string>(channel, nonexistentMethod, new CallOp… in UnknownMethodHandler() 321 var ex = Assert.Throws<RpcException>(() => Calls.BlockingUnaryCall(callDetails, "abc")); in UnknownMethodHandler()
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | AsyncCall.cs | 56 public AsyncCall(CallInvocationDetails<TRequest, TResponse> callDetails) in AsyncCall() argument 57 … : base(callDetails.RequestMarshaller.Serializer, callDetails.ResponseMarshaller.Deserializer) in AsyncCall() 59 this.details = callDetails.WithOptions(callDetails.Options.Normalize()); in AsyncCall() 66 …l(CallInvocationDetails<TRequest, TResponse> callDetails, INativeCall injectedNativeCall) : this(c… in AsyncCall() argument
|
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/ |
D | JsonBuilder.java | 1218 JSONObject callDetails = new JSONObject(); in buildCallDetails() local 1220 callDetails.put("Handle", buildUri(details.getHandle())); in buildCallDetails() 1221 callDetails.put("HandlePresentation", in buildCallDetails() 1224 callDetails.put("CallerDisplayName", build(details.getCallerDisplayName())); in buildCallDetails() 1229 callDetails.put("Capabilities", in buildCallDetails() 1232 callDetails.put("Properties", in buildCallDetails() 1236 callDetails.put("DisconnectCause", build((details.getDisconnectCause() != null) ? details in buildCallDetails() 1238 callDetails.put("ConnectTimeMillis", build(details.getConnectTimeMillis())); in buildCallDetails() 1243 callDetails.put("VideoState", in buildCallDetails() 1249 callDetails.put("Extras", build(details.getExtras())); in buildCallDetails() [all …]
|
/external/grpc-grpc/src/csharp/Grpc.IntegrationTesting/ |
D | ClientRunners.cs | 284 …var callDetails = new CallInvocationDetails<byte[], byte[]>(channel, GenericService.StreamingCallM… in RunGenericStreamingAsync() 286 using (var call = Calls.AsyncDuplexStreamingCall(callDetails)) in RunGenericStreamingAsync()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Internal/ |
D | AsyncCallTest.cs | 44 …var callDetails = new CallInvocationDetails<string, string>(channel, "someMethod", null, Marshalle… in Init() 45 asyncCall = new AsyncCall<string, string>(callDetails, fakeCall); in Init()
|