Searched refs:RequestCallContextSafeHandle (Results 1 – 8 of 8) sorted by relevance
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | RequestCallContextSafeHandle.cs | 30 …internal class RequestCallContextSafeHandle : SafeHandleZeroIsInvalid, IOpCompletionCallback, IPoo… class 33 … static readonly ILogger Logger = GrpcEnvironment.Logger.ForType<RequestCallContextSafeHandle>(); 34 Action<RequestCallContextSafeHandle> returnToPoolAction; 36 private RequestCallContextSafeHandle() in RequestCallContextSafeHandle() method in Grpc.Core.Internal.RequestCallContextSafeHandle 40 public static RequestCallContextSafeHandle Create() in Create() 54 public void SetReturnToPoolAction(Action<RequestCallContextSafeHandle> returnAction) in SetReturnToPoolAction()
|
D | CompletionRegistry.cs | 32 …internal delegate void RequestCallCompletionDelegate(bool success, RequestCallContextSafeHandle ct… in RequestCallCompletionDelegate() 40 readonly Func<RequestCallContextSafeHandle> requestCallContextFactory; 45 …nment, Func<BatchContextSafeHandle> batchContextFactory, Func<RequestCallContextSafeHandle> reques… in CompletionRegistry() 78 …public RequestCallContextSafeHandle RegisterRequestCallCompletion(RequestCallCompletionDelegate ca… in RegisterRequestCallCompletion()
|
D | NativeMethods.Generated.cs | 450 … public delegate RequestCallContextSafeHandle grpcsharp_request_call_context_create_delegate(); in grpcsharp_request_call_context_create_delegate() 451 …gate CallSafeHandle grpcsharp_request_call_context_call_delegate(RequestCallContextSafeHandle ctx); in grpcsharp_request_call_context_call_delegate() 452 …elegate IntPtr grpcsharp_request_call_context_method_delegate(RequestCallContextSafeHandle ctx, ou… in grpcsharp_request_call_context_method_delegate() 453 … delegate IntPtr grpcsharp_request_call_context_host_delegate(RequestCallContextSafeHandle ctx, ou… in grpcsharp_request_call_context_host_delegate() 454 …legate Timespec grpcsharp_request_call_context_deadline_delegate(RequestCallContextSafeHandle ctx); in grpcsharp_request_call_context_deadline_delegate() 455 … IntPtr grpcsharp_request_call_context_request_metadata_delegate(RequestCallContextSafeHandle ctx); in grpcsharp_request_call_context_request_metadata_delegate() 456 …blic delegate void grpcsharp_request_call_context_reset_delegate(RequestCallContextSafeHandle ctx); in grpcsharp_request_call_context_reset_delegate() 515 …_delegate(ServerSafeHandle server, CompletionQueueSafeHandle cq, RequestCallContextSafeHandle ctx); in grpcsharp_server_request_call_delegate() 581 … public static extern RequestCallContextSafeHandle grpcsharp_request_call_context_create(); in grpcsharp_request_call_context_create() 584 …static extern CallSafeHandle grpcsharp_request_call_context_call(RequestCallContextSafeHandle ctx); in grpcsharp_request_call_context_call() [all …]
|
/external/grpc-grpc/templates/src/csharp/Grpc.Core/Internal/ |
D | NativeMethods.Generated.cs.template | 18 'RequestCallContextSafeHandle grpcsharp_request_call_context_create()', 19 'CallSafeHandle grpcsharp_request_call_context_call(RequestCallContextSafeHandle ctx)', 20 …'IntPtr grpcsharp_request_call_context_method(RequestCallContextSafeHandle ctx, out UIntPtr method… 21 …'IntPtr grpcsharp_request_call_context_host(RequestCallContextSafeHandle ctx, out UIntPtr hostLeng… 22 'Timespec grpcsharp_request_call_context_deadline(RequestCallContextSafeHandle ctx)', 23 'IntPtr grpcsharp_request_call_context_request_metadata(RequestCallContextSafeHandle ctx)', 24 'void grpcsharp_request_call_context_reset(RequestCallContextSafeHandle ctx)', 83 …est_call(ServerSafeHandle server, CompletionQueueSafeHandle cq, RequestCallContextSafeHandle ctx)',
|
/external/grpc-grpc/src/csharp/Grpc.Core/ |
D | GrpcEnvironment.cs | 58 readonly IObjectPool<RequestCallContextSafeHandle> requestCallContextPool; 304 …uestCallContextPool = new DefaultObjectPool<RequestCallContextSafeHandle>(() => RequestCallContext… in GrpcEnvironment() 322 …internal IObjectPool<RequestCallContextSafeHandle> RequestCallContextPool => requestCallContextPoo…
|
D | Server.cs | 361 …private void HandleNewServerRpc(bool success, RequestCallContextSafeHandle ctx, CompletionQueueSaf… in HandleNewServerRpc()
|
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Internal/ |
D | CompletionQueueSafeHandleTest.cs | 43 …ionRegistry(env, () => BatchContextSafeHandle.Create(), () => RequestCallContextSafeHandle.Create(… in CreateAsyncAndShutdown()
|
/external/grpc-grpc/src/csharp/Grpc.Microbenchmarks/ |
D | CompletionRegistryBenchmark.cs | 46 …try(environment, () => BatchContextSafeHandle.Create(), () => RequestCallContextSafeHandle.Create(… in Run()
|