/third_party/grpc/src/csharp/Grpc.Core.Api/Interceptors/ |
D | ChannelExtensions.cs | 41 public static CallInvoker Intercept(this ChannelBase channel, Interceptor interceptor) in Intercept() method in Grpc.Core.Interceptors.ChannelExtensions 43 return channel.CreateCallInvoker().Intercept(interceptor); in Intercept() 62 … public static CallInvoker Intercept(this ChannelBase channel, params Interceptor[] interceptors) in Intercept() method in Grpc.Core.Interceptors.ChannelExtensions 64 return channel.CreateCallInvoker().Intercept(interceptors); in Intercept() 82 …public static CallInvoker Intercept(this ChannelBase channel, Func<Metadata, Metadata> interceptor) in Intercept() method in Grpc.Core.Interceptors.ChannelExtensions 84 return channel.CreateCallInvoker().Intercept(interceptor); in Intercept()
|
D | CallInvokerExtensions.cs | 43 public static CallInvoker Intercept(this CallInvoker invoker, Interceptor interceptor) in Intercept() method in Grpc.Core.Interceptors.CallInvokerExtensions 64 … public static CallInvoker Intercept(this CallInvoker invoker, params Interceptor[] interceptors) in Intercept() method in Grpc.Core.Interceptors.CallInvokerExtensions 71 invoker = Intercept(invoker, interceptor); in Intercept() 92 …public static CallInvoker Intercept(this CallInvoker invoker, Func<Metadata, Metadata> interceptor) in Intercept() method in Grpc.Core.Interceptors.CallInvokerExtensions
|
/third_party/grpc/src/csharp/Grpc.Core.Tests/Interceptors/ |
D | ServerInterceptorTest.cs | 51 helper.ServiceDefinition = helper.ServiceDefinition.Intercept(interceptor); in AddRequestHeaderInServerInterceptor() 68 .Intercept(new ServerCallContextInterceptor(ctx => stringBuilder.Append("A"))) in VerifyInterceptorOrdering() 69 .Intercept(new ServerCallContextInterceptor(ctx => stringBuilder.Append("B1")), in VerifyInterceptorOrdering() 72 .Intercept(new ServerCallContextInterceptor(ctx => stringBuilder.Append("C"))); in VerifyInterceptorOrdering() 118 .Intercept(interceptor2) in UserStateVisibleToAllInterceptors() 119 .Intercept(interceptor1); in UserStateVisibleToAllInterceptors() 132 Assert.Throws<ArgumentNullException>(() => sd.Intercept(default(Interceptor))); in CheckNullInterceptorRegistrationFails() 133 Assert.Throws<ArgumentNullException>(() => sd.Intercept(new[]{default(Interceptor)})); in CheckNullInterceptorRegistrationFails() 134 …Assert.Throws<ArgumentNullException>(() => sd.Intercept(new[]{new ServerCallContextInterceptor(ctx… in CheckNullInterceptorRegistrationFails() 135 Assert.Throws<ArgumentNullException>(() => sd.Intercept(default(Interceptor[]))); in CheckNullInterceptorRegistrationFails()
|
D | ClientInterceptorTest.cs | 52 var callInvoker = helper.GetChannel().Intercept(metadata => in AddRequestHeaderInClientInterceptor() 72 var callInvoker = helper.GetChannel().Intercept(metadata => { in CheckInterceptorOrderInClientInterceptors() 75 }).Intercept(new CallbackInterceptor(() => stringBuilder.Append("array1")), in CheckInterceptorOrderInClientInterceptors() 78 .Intercept(metadata => in CheckInterceptorOrderInClientInterceptors() 82 }).Intercept(metadata => in CheckInterceptorOrderInClientInterceptors() 99 … Assert.Throws<ArgumentNullException>(() => helper.GetChannel().Intercept(default(Interceptor))); in CheckNullInterceptorRegistrationFails() 100 …Assert.Throws<ArgumentNullException>(() => helper.GetChannel().Intercept(new[]{default(Interceptor… in CheckNullInterceptorRegistrationFails() 101 …Assert.Throws<ArgumentNullException>(() => helper.GetChannel().Intercept(new[]{new CallbackInterce… in CheckNullInterceptorRegistrationFails() 102 … Assert.Throws<ArgumentNullException>(() => helper.GetChannel().Intercept(default(Interceptor[]))); in CheckNullInterceptorRegistrationFails() 121 … var callInvoker = helper.GetChannel().Intercept(new ClientStreamingCountingInterceptor()); in CountNumberOfRequestsInClientInterceptors()
|
/third_party/grpc/src/csharp/Grpc.Core/Interceptors/ |
D | ServerServiceDefinitionExtensions.cs | 43 …public static ServerServiceDefinition Intercept(this ServerServiceDefinition serverServiceDefiniti… in Intercept() method in Grpc.Core.Interceptors.ServerServiceDefinitionExtensions 69 …public static ServerServiceDefinition Intercept(this ServerServiceDefinition serverServiceDefiniti… in Intercept() method in Grpc.Core.Interceptors.ServerServiceDefinitionExtensions 76 serverServiceDefinition = Intercept(serverServiceDefinition, interceptor); in Intercept()
|
/third_party/skia/src/core/ |
D | SkGlyph.cpp | 292 const SkGlyph::Intercept* intercept,SkScalar* array, int* count) { in ensureIntercepts() 302 const SkGlyph::Intercept* match = in ensureIntercepts() 303 [this](const SkScalar bounds[2]) -> const SkGlyph::Intercept* { in ensureIntercepts() 307 const SkGlyph::Intercept* intercept = fPathData->fIntercept; in ensureIntercepts() 324 SkGlyph::Intercept* intercept = alloc->make<SkGlyph::Intercept>(); in ensureIntercepts()
|
D | SkGlyph.h | 364 struct Intercept { struct 365 Intercept* fNext; argument 371 Intercept* fIntercept{nullptr}; argument
|
/third_party/flutter/skia/src/core/ |
D | SkGlyph.cpp | 299 const SkGlyph::Intercept* intercept,SkScalar* array, int* count) { in ensureIntercepts() 309 const SkGlyph::Intercept* match = in ensureIntercepts() 310 [this](const SkScalar bounds[2]) -> const SkGlyph::Intercept* { in ensureIntercepts() 314 const SkGlyph::Intercept* intercept = fPathData->fIntercept; in ensureIntercepts() 331 SkGlyph::Intercept* intercept = alloc->make<SkGlyph::Intercept>(); in ensureIntercepts()
|
D | SkGlyph.h | 247 struct Intercept { struct 248 Intercept* fNext; argument 254 Intercept* fIntercept{nullptr}; argument
|
/third_party/grpc/include/grpcpp/impl/codegen/ |
D | interceptor.h | 222 virtual void Intercept(InterceptorBatchMethods* methods) = 0;
|
D | server_interceptor.h | 103 interceptors_[pos]->Intercept(interceptor_methods); in RunInterceptor()
|
D | client_interceptor.h | 133 interceptors_[pos]->Intercept(interceptor_methods); in RunInterceptor()
|
/third_party/grpc/test/cpp/interop/ |
D | client_helper.h | 75 void Intercept(experimental::InterceptorBatchMethods* methods) override { in Intercept() function
|
/third_party/grpc/test/cpp/end2end/ |
D | client_interceptors_end2end_test.cc | 67 virtual void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function in grpc::testing::__anonb07de2df0111::HijackingInterceptor 172 virtual void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function in grpc::testing::__anonb07de2df0111::HijackingInterceptorMakesAnotherCall 292 virtual void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function in grpc::testing::__anonb07de2df0111::BidiStreamingRpcHijackingInterceptor 361 virtual void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function in grpc::testing::__anonb07de2df0111::ClientStreamingRpcHijackingInterceptor 417 virtual void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function in grpc::testing::__anonb07de2df0111::ServerStreamingRpcHijackingInterceptor 531 virtual void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function in grpc::testing::__anonb07de2df0111::LoggingInterceptor
|
D | server_interceptors_end2end_test.cc | 76 void Intercept(experimental::InterceptorBatchMethods* methods) override { in Intercept() function in grpc::testing::__anonfadbaef70111::LoggingInterceptor 152 void Intercept(experimental::InterceptorBatchMethods* methods) override { in Intercept() function in grpc::testing::__anonfadbaef70111::SyncSendMessageTester 182 void Intercept(experimental::InterceptorBatchMethods* methods) override { in Intercept() function in grpc::testing::__anonfadbaef70111::SyncSendMessageVerifier
|
D | interceptors_util.h | 36 virtual void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function
|
D | end2end_test.cc | 1792 void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function in grpc::testing::__anon0c16d4c00111::CredentialsInterceptor
|
/third_party/grpc/test/cpp/ios/CronetTests/ |
D | TestHelper.h | 44 virtual void Intercept(grpc::experimental::InterceptorBatchMethods* methods);
|
D | TestHelper.mm | 178 void DummyInterceptor::Intercept(grpc::experimental::InterceptorBatchMethods* methods) { function
|
/third_party/grpc/examples/cpp/keyvaluestore/ |
D | caching_interceptor.h | 37 void Intercept( in Intercept() function
|
/third_party/grpc/src/csharp/Grpc.Core.Api/ |
D | ClientBase.cs | 221 …return undecoratedCallInvoker.Intercept(new ClientBaseConfigurationInterceptor((method, host, opti… in CreateDecoratedCallInvoker()
|
/third_party/python/Lib/idlelib/ |
D | README.txt | 69 redirector.py # Intercept widget subcommands (for percolator) (nim).
|
/third_party/gstreamer/gstreamer/ |
D | ChangeLog | 100900 libs/gst/check/gstcheck.c: Intercept criticals and warnings in the Gst-Phonon log domain, so 100903 Intercept criticals and warnings in the Gst-Phonon log domain, so
|
/third_party/gstreamer/gstplugins_good/ |
D | ChangeLog | 106088 Intercept BUFFERING messages in rtpbin
|