Home
last modified time | relevance | path

Searched defs:interceptor (Results 1 – 25 of 53) sorted by relevance

123

/external/v8/src/
Dapi-arguments-inl.h45 #define DCHECK_NAME_COMPATIBLE(interceptor, name) \ argument
124 Handle<InterceptorInfo> interceptor) { in CallNamedEnumerator()
133 Handle<InterceptorInfo> interceptor) { in CallIndexedEnumerator()
142 Handle<InterceptorInfo> interceptor, Handle<Name> name) { in CallNamedGetter()
155 Handle<InterceptorInfo> interceptor, Handle<Name> name) { in CallNamedDescriptor()
179 Handle<InterceptorInfo> interceptor, Handle<Name> name, in CallNamedSetter()
197 Handle<InterceptorInfo> interceptor, Handle<Name> name, in CallNamedDefiner()
215 Handle<InterceptorInfo> interceptor, uint32_t index, Handle<Object> value) { in CallIndexedSetter()
232 Handle<InterceptorInfo> interceptor, uint32_t index, in CallIndexedDefiner()
250 Handle<InterceptorInfo> interceptor, uint32_t index) { in CallIndexedGetter()
[all …]
/external/apache-http/src/org/apache/http/protocol/
DBasicHttpProcessor.java152 void addInterceptor(final HttpRequestInterceptor interceptor) { in addInterceptor()
157 void addInterceptor(final HttpRequestInterceptor interceptor, in addInterceptor()
205 void addInterceptor(final HttpResponseInterceptor interceptor) { in addInterceptor()
209 public final void addInterceptor(final HttpResponseInterceptor interceptor, in addInterceptor()
293 HttpRequestInterceptor interceptor = in process() local
307 HttpResponseInterceptor interceptor = in process() local
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DClientInterceptorsTest.java95 ClientInterceptor interceptor = in channelAndInterceptorCalled() local
114 ClientInterceptor interceptor = new ClientInterceptor() { in callNextTwice() local
220 ClientInterceptor interceptor = in callOptions() local
240 ClientInterceptor interceptor = new ClientInterceptor() { in addOutboundHeaders() local
271 ClientInterceptor interceptor = new ClientInterceptor() { in examineInboundHeaders() local
307 ClientInterceptor interceptor = new ClientInterceptor() { in normalCall() local
337 ClientInterceptor interceptor = new ClientInterceptor() { in exceptionInStart() local
381 ClientInterceptor interceptor = new ClientInterceptor() { in authorityIsDelegated() local
401 ClientInterceptor interceptor = in customOptionAccessible() local
DServerInterceptorsTest.java123 ServerInterceptor interceptor = in multipleInvocationsOfHandler() local
166 ServerInterceptor interceptor = new ServerInterceptor() { in callNextTwice() local
276 ServerInterceptor interceptor = new ServerInterceptor() { in argumentsPassed() local
/external/grpc-grpc/src/csharp/Grpc.Core/
DCallCredentials.cs49 public static CallCredentials FromInterceptor(AsyncAuthInterceptor interceptor) in FromInterceptor()
67 readonly AsyncAuthInterceptor interceptor; field in Grpc.Core.MetadataCredentials
73 public MetadataCredentials(AsyncAuthInterceptor interceptor) in MetadataCredentials()
DClientBase.cs154 readonly Func<IMethod, string, CallOptions, Tuple<string, CallOptions>> interceptor; field in Grpc.Core.ClientBase.ClientBaseConfiguration.ClientBaseConfigurationInterceptor
159 …onfigurationInterceptor(Func<IMethod, string, CallOptions, Tuple<string, CallOptions>> interceptor) in ClientBaseConfigurationInterceptor() argument
/external/grpc-grpc/src/csharp/Grpc.Core/Interceptors/
DCallInvokerExtensions.cs43 public static CallInvoker Intercept(this CallInvoker invoker, Interceptor interceptor) in Intercept()
92 …public static CallInvoker Intercept(this CallInvoker invoker, Func<Metadata, Metadata> interceptor) in Intercept() argument
99 readonly Func<Metadata, Metadata> interceptor; field in Grpc.Core.Interceptors.CallInvokerExtensions.MetadataInterceptor
104 public MetadataInterceptor(Func<Metadata, Metadata> interceptor) in MetadataInterceptor() argument
DChannelExtensions.cs41 public static CallInvoker Intercept(this Channel channel, Interceptor interceptor) in Intercept()
82 … public static CallInvoker Intercept(this Channel channel, Func<Metadata, Metadata> interceptor) in Intercept() argument
DInterceptingCallInvoker.cs31 readonly Interceptor interceptor; field in Grpc.Core.Interceptors.InterceptingCallInvoker
37 public InterceptingCallInvoker(CallInvoker invoker, Interceptor interceptor) in InterceptingCallInvoker()
DServerServiceDefinitionExtensions.cs43 …Definition Intercept(this ServerServiceDefinition serverServiceDefinition, Interceptor interceptor) in Intercept()
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DServerCallHandler.cs34 IServerCallHandler Intercept(Interceptor interceptor); in Intercept()
95 public IServerCallHandler Intercept(Interceptor interceptor) in Intercept()
158 public IServerCallHandler Intercept(Interceptor interceptor) in Intercept()
221 public IServerCallHandler Intercept(Interceptor interceptor) in Intercept()
281 public IServerCallHandler Intercept(Interceptor interceptor) in Intercept()
314 public IServerCallHandler Intercept(Interceptor interceptor) in Intercept()
DNativeMetadataCredentialsPlugin.cs35 AsyncAuthInterceptor interceptor; field in Grpc.Core.Internal.NativeMetadataCredentialsPlugin
40 public NativeMetadataCredentialsPlugin(AsyncAuthInterceptor interceptor) in NativeMetadataCredentialsPlugin()
/external/grpc-grpc/src/php/lib/Grpc/Internal/
DInterceptorChannel.php28 private $interceptor; variable in Grpc\\Internal\\InterceptorChannel
35 public function __construct($channel, $interceptor)
/external/grpc-grpc-java/core/src/main/java/io/grpc/
DInternalServerInterceptors.java25 ServerInterceptor interceptor, ServerCallHandler<ReqT, RespT> callHandler) { in interceptCallHandler()
37 ServerInterceptor interceptor, ServerCallHandler<ReqT, RespT> callHandler) { in interceptCallHandlerCreate()
DInternalClientInterceptors.java27 final ClientInterceptor interceptor, in wrapClientInterceptor()
DServerInterceptors.java212 ServerInterceptor interceptor, ServerCallHandler<ReqT, RespT> callHandler) { in create()
216 private final ServerInterceptor interceptor; field in ServerInterceptors.InterceptCallHandler
220 ServerInterceptor interceptor, ServerCallHandler<ReqT, RespT> callHandler) { in InterceptCallHandler()
DClientInterceptors.java99 final ClientInterceptor interceptor, in wrapClientInterceptor()
/external/guice/core/test/com/google/inject/internal/
DProxyFactoryTest.java42 SimpleInterceptor interceptor = new SimpleInterceptor(); in testSimpleCase() local
77 SimpleInterceptor interceptor = new SimpleInterceptor(); in testInterceptOneMethod() local
132 SimpleInterceptor interceptor = new SimpleInterceptor(); in testWithConstructorArguments() local
147 SimpleInterceptor interceptor = new SimpleInterceptor(); in testNotProxied() local
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DInterceptorTest.java81 Interceptor interceptor = new Interceptor() { in networkInterceptorsCannotShortCircuitResponses() local
111 Interceptor interceptor = new Interceptor() { in networkInterceptorsCannotCallProceedMultipleTimes() local
135 Interceptor interceptor = new Interceptor() { in networkInterceptorsCannotChangeServerAddress() local
561 Interceptor interceptor = new Interceptor() { in applicationInterceptorReturnsNull() local
587 Interceptor interceptor = new Interceptor() { in networkInterceptorReturnsNull() local
/external/grpc-grpc/src/csharp/Grpc.Core.Tests/Interceptors/
DServerInterceptorTest.cs93 readonly Action<ServerCallContext> interceptor; field in Grpc.Core.Interceptors.Tests.ServerInterceptorTest.ServerCallContextInterceptor
95 public ServerCallContextInterceptor(Action<ServerCallContext> interceptor) in ServerCallContextInterceptor()
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DMockMethodInterceptor.java103@FieldValue("mockitoInterceptor") MockMethodInterceptor interceptor, in interceptSuperCallable()
121@FieldValue("mockitoInterceptor") MockMethodInterceptor interceptor, in interceptAbstract()
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/
DInterceptors.java30 … Interceptor interceptor = findInterceptor(methodSignature.className, methodSignature.methodName); in getInterceptionHandler() local
/external/grpc-grpc-java/examples/src/main/java/io/grpc/examples/header/
DCustomHeaderClient.java49 ClientInterceptor interceptor = new HeaderClientInterceptor(); in CustomHeaderClient() local
/external/testng/src/test/java/test/listeners/
DListenerTest.java115 MyMethodInterceptor interceptor = new MyMethodInterceptor(); in methodInterceptorShouldBeRunOnce() local
/external/grpc-grpc/src/python/grpcio/grpc/
D_interceptor.py191 def __init__(self, thunk, method, interceptor): argument
257 def __init__(self, thunk, method, interceptor): argument
284 def __init__(self, thunk, method, interceptor): argument
365 def __init__(self, thunk, method, interceptor): argument
396 def __init__(self, channel, interceptor): argument

123