Home
last modified time | relevance | path

Searched refs:Intercept (Results 1 – 24 of 24) sorted by relevance

/third_party/grpc/src/csharp/Grpc.Core.Api/Interceptors/
DChannelExtensions.cs41 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()
DCallInvokerExtensions.cs43 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/
DServerInterceptorTest.cs51 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()
DClientInterceptorTest.cs52 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/
DServerServiceDefinitionExtensions.cs43 …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/
DSkGlyph.cpp292 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()
DSkGlyph.h364 struct Intercept { struct
365 Intercept* fNext; argument
371 Intercept* fIntercept{nullptr}; argument
/third_party/flutter/skia/src/core/
DSkGlyph.cpp299 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()
DSkGlyph.h247 struct Intercept { struct
248 Intercept* fNext; argument
254 Intercept* fIntercept{nullptr}; argument
/third_party/grpc/include/grpcpp/impl/codegen/
Dinterceptor.h222 virtual void Intercept(InterceptorBatchMethods* methods) = 0;
Dserver_interceptor.h103 interceptors_[pos]->Intercept(interceptor_methods); in RunInterceptor()
Dclient_interceptor.h133 interceptors_[pos]->Intercept(interceptor_methods); in RunInterceptor()
/third_party/grpc/test/cpp/interop/
Dclient_helper.h75 void Intercept(experimental::InterceptorBatchMethods* methods) override { in Intercept() function
/third_party/grpc/test/cpp/end2end/
Dclient_interceptors_end2end_test.cc67 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
Dserver_interceptors_end2end_test.cc76 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
Dinterceptors_util.h36 virtual void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function
Dend2end_test.cc1792 void Intercept(experimental::InterceptorBatchMethods* methods) { in Intercept() function in grpc::testing::__anon0c16d4c00111::CredentialsInterceptor
/third_party/grpc/test/cpp/ios/CronetTests/
DTestHelper.h44 virtual void Intercept(grpc::experimental::InterceptorBatchMethods* methods);
DTestHelper.mm178 void DummyInterceptor::Intercept(grpc::experimental::InterceptorBatchMethods* methods) { function
/third_party/grpc/examples/cpp/keyvaluestore/
Dcaching_interceptor.h37 void Intercept( in Intercept() function
/third_party/grpc/src/csharp/Grpc.Core.Api/
DClientBase.cs221 …return undecoratedCallInvoker.Intercept(new ClientBaseConfigurationInterceptor((method, host, opti… in CreateDecoratedCallInvoker()
/third_party/python/Lib/idlelib/
DREADME.txt69 redirector.py # Intercept widget subcommands (for percolator) (nim).
/third_party/gstreamer/gstreamer/
DChangeLog100900 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/
DChangeLog106088 Intercept BUFFERING messages in rtpbin