Home
last modified time | relevance | path

Searched defs:interceptors (Results 1 – 25 of 96) sorted by relevance

1234

/external/guice/core/src/com/google/inject/internal/
DMethodAspect.java36 private final List<MethodInterceptor> interceptors; field in MethodAspect
48 List<MethodInterceptor> interceptors) { in MethodAspect()
57 MethodInterceptor... interceptors) { in MethodAspect()
69 List<MethodInterceptor> interceptors() { in interceptors() method in MethodAspect
DProxyFactory.java52 private final ImmutableMap<Method, List<MethodInterceptor>> interceptors; field in ProxyFactory
183 List<MethodInterceptor> interceptors; // lazy field in ProxyFactory.MethodInterceptorsPair
189 void addAll(List<MethodInterceptor> interceptors) { in addAll()
DInterceptorStackCallback.java43 final MethodInterceptor[] interceptors; field in InterceptorStackCallback
46 public InterceptorStackCallback(Method method, List<MethodInterceptor> interceptors) { in InterceptorStackCallback()
/external/grpc-grpc-java/api/src/main/java/io/grpc/
DServerInterceptors.java44 ServerInterceptor... interceptors) { in interceptForward()
49 ServerInterceptor... interceptors) { in interceptForward()
64 List<? extends ServerInterceptor> interceptors) { in interceptForward()
72 List<? extends ServerInterceptor> interceptors) { in interceptForward()
86 ServerInterceptor... interceptors) { in intercept()
91 ServerInterceptor... interceptors) { in intercept()
106 List<? extends ServerInterceptor> interceptors) { in intercept()
120 List<? extends ServerInterceptor> interceptors) { in intercept()
242 List<? extends ServerInterceptor> interceptors) { in wrapAndAddMethod()
DClientInterceptors.java44 public static Channel interceptForward(Channel channel, ClientInterceptor... interceptors) { in interceptForward()
58 List<? extends ClientInterceptor> interceptors) { in interceptForward()
73 public static Channel intercept(Channel channel, ClientInterceptor... interceptors) { in intercept()
86 public static Channel intercept(Channel channel, List<? extends ClientInterceptor> interceptors) { in intercept()
/external/flatbuffers/grpc/examples/swift/Greeter/Sources/Model/
Dgreeter.grpc.swift31 var interceptors: models_GreeterClientInterceptorFactoryProtocol? { get } variable
89 public var interceptors: models_GreeterClientInterceptorFactoryProtocol? in makeSayHelloInterceptors() variable
103 var interceptors: models_GreeterServerInterceptorFactoryProtocol? { get } variable
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DInterceptorTest.java250 private void rewriteRequestToServer(List<Interceptor> interceptors) throws Exception { in rewriteRequestToServer()
286 private void rewriteResponseFromServer(List<Interceptor> interceptors) throws Exception { in rewriteResponseFromServer()
319 private void multipleInterceptors(List<Interceptor> interceptors) throws Exception { in multipleInterceptors()
366 private void asyncInterceptors(List<Interceptor> interceptors) throws Exception { in asyncInterceptors()
482 List<Interceptor> interceptors) throws Exception { in interceptorThrowsRuntimeExceptionSynchronous()
540 List<Interceptor> interceptors) throws Exception { in interceptorThrowsRuntimeExceptionAsynchronous()
/external/flatbuffers/tests/swift/tests/Tests/FlatBuffers.Test.SwiftTests/
Dmonster_test.grpc.swift31 var interceptors: MyGame_Example_MonsterStorageClientInterceptorFactoryProtocol? { get } variable
126 public var interceptors: MyGame_Example_MonsterStorageClientInterceptorFactoryProtocol? in makeStoreInterceptors() variable
140 var interceptors: MyGame_Example_MonsterStorageServerInterceptorFactoryProtocol? { get } variable
/external/robolectric/sandbox/src/main/java/org/robolectric/internal/bytecode/
DInterceptors.java11 private final Map<MethodRef, Interceptor> interceptors = new HashMap<>(); field in Interceptors
13 public Interceptors(Interceptor... interceptors) { in Interceptors()
DClassHandlerBuilder.java17 ClassHandler build(ShadowMap shadowMap, ShadowMatcher shadowMatcher, Interceptors interceptors); in build()
/external/guice/core/src/com/google/inject/spi/
DInterceptorBinding.java48 private final ImmutableList<MethodInterceptor> interceptors; field in InterceptorBinding
54 MethodInterceptor[] interceptors) { in InterceptorBinding()
/external/robolectric/simulator/src/main/java/org/robolectric/simulator/
DSandboxBuilder.java68 Interceptors interceptors = new Interceptors(AndroidInterceptors.all()); in build() local
102 Interceptors interceptors) { in buildInstrumentationConfiguration()
/external/aws-sdk-java-v2/core/sdk-core/src/test/java/software/amazon/awssdk/core/internal/http/timers/
DAsyncHttpClientApiCallTimeoutTests.java92 ExecutionInterceptorChain interceptors = in errorResponse_SlowAfterErrorRequestHandler_ThrowsApiCallTimeoutException() local
170 ExecutionInterceptorChain interceptors = in withInterceptors() local
/external/sdk-platform-java/java-core/google-cloud-core/src/main/java/com/google/cloud/
DExceptionHandler.java44 private final ImmutableList<Interceptor> interceptors; field in ExceptionHandler
82 private final ImmutableList.Builder<Interceptor> interceptors = ImmutableList.builder(); field in ExceptionHandler.Builder
96 public Builder addInterceptors(Interceptor... interceptors) { in addInterceptors()
/external/grpc-grpc/src/ruby/lib/grpc/generic/
Dinterceptor_registry.rb33 def initialize(interceptors = []) argument
/external/robolectric/sandbox/src/test/java/org/robolectric/interceptors/
DAndroidInterceptorsTest.java22 Interceptors interceptors = new Interceptors(AndroidInterceptors.all()); in testNioUtilsFreeDirectBufferInterceptor() local
/external/grpc-grpc/src/core/lib/channel/
Dpromise_based_filter.h177 inline constexpr bool HasAsyncErrorInterceptor(I1 i1, I2 i2, in HasAsyncErrorInterceptor()
218 inline constexpr bool HasChannelAccess(I1 i1, I2 i2, in HasChannelAccess()
/external/grpc-grpc/src/python/grpcio_tests/tests/observability/
D_test_server.py100 def start_server(interceptors=None) -> Tuple[grpc.Server, int]: argument
125 def intercepted_unary_unary_call(port, interceptors, metadata=None): argument
/external/opencensus-java/contrib/spring/src/main/java/io/opencensus/contrib/spring/autoconfig/
DTraceWebAsyncClientAutoConfiguration.java98 List<org.springframework.http.client.AsyncClientHttpRequestInterceptor> interceptors = in init() local
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/
DMockMethodAdvice.java65 private final WeakConcurrentMap<Object, MockMethodInterceptor> interceptors; field in MockMethodAdvice
79 WeakConcurrentMap<Object, MockMethodInterceptor> interceptors, in MockMethodAdvice()
144 Map<Class<?>, MockMethodInterceptor> interceptors = mockedStatics.get(); in handleStatic() local
182 Map<Class<?>, ?> interceptors = mockedStatics.get(); in isMockedStatic() local
DInlineDelegateByteBuddyMockMaker.java459 Map<Class<?>, MockMethodInterceptor> interceptors = mockedStatics.get(); in getHandler() local
476 Map<Class<?>, MockMethodInterceptor> interceptors = mockedStatics.get(); in resetMock() local
/external/robolectric/sandbox/src/main/java/org/robolectric/config/
DAndroidConfigurer.java41 public void configure(InstrumentationConfiguration.Builder builder, Interceptors interceptors) { in configure()
/external/grpc-grpc-java/authz/src/main/java/io/grpc/authz/
DAuthorizationServerInterceptor.java43 private final List<ServerInterceptor> interceptors = new ArrayList<>(); field in AuthorizationServerInterceptor
/external/flatbuffers/grpc/examples/swift/Greeter/Sources/server/
Dmain.swift25 var interceptors: models_GreeterServerInterceptorFactoryProtocol? variable
/external/aws-sdk-java-v2/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/builder/
Dtest-query-async-client-builder-class.java43 …List<ExecutionInterceptor> interceptors = clientConfiguration.option(SdkClientOption.EXECUTION_INT… in buildClient() local

1234