/external/guice/core/src/com/google/inject/internal/ |
D | MethodAspect.java | 36 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
|
D | ProxyFactory.java | 52 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()
|
D | InterceptorStackCallback.java | 43 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/ |
D | ServerInterceptors.java | 44 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()
|
D | ClientInterceptors.java | 44 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/ |
D | greeter.grpc.swift | 31 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/ |
D | InterceptorTest.java | 250 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/ |
D | monster_test.grpc.swift | 31 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/ |
D | Interceptors.java | 11 private final Map<MethodRef, Interceptor> interceptors = new HashMap<>(); field in Interceptors 13 public Interceptors(Interceptor... interceptors) { in Interceptors()
|
D | ClassHandlerBuilder.java | 17 ClassHandler build(ShadowMap shadowMap, ShadowMatcher shadowMatcher, Interceptors interceptors); in build()
|
/external/guice/core/src/com/google/inject/spi/ |
D | InterceptorBinding.java | 48 private final ImmutableList<MethodInterceptor> interceptors; field in InterceptorBinding 54 MethodInterceptor[] interceptors) { in InterceptorBinding()
|
/external/robolectric/simulator/src/main/java/org/robolectric/simulator/ |
D | SandboxBuilder.java | 68 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/ |
D | AsyncHttpClientApiCallTimeoutTests.java | 92 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/ |
D | ExceptionHandler.java | 44 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/ |
D | interceptor_registry.rb | 33 def initialize(interceptors = []) argument
|
/external/robolectric/sandbox/src/test/java/org/robolectric/interceptors/ |
D | AndroidInterceptorsTest.java | 22 Interceptors interceptors = new Interceptors(AndroidInterceptors.all()); in testNioUtilsFreeDirectBufferInterceptor() local
|
/external/grpc-grpc/src/core/lib/channel/ |
D | promise_based_filter.h | 177 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.py | 100 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/ |
D | TraceWebAsyncClientAutoConfiguration.java | 98 List<org.springframework.http.client.AsyncClientHttpRequestInterceptor> interceptors = in init() local
|
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/ |
D | MockMethodAdvice.java | 65 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
|
D | InlineDelegateByteBuddyMockMaker.java | 459 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/ |
D | AndroidConfigurer.java | 41 public void configure(InstrumentationConfiguration.Builder builder, Interceptors interceptors) { in configure()
|
/external/grpc-grpc-java/authz/src/main/java/io/grpc/authz/ |
D | AuthorizationServerInterceptor.java | 43 private final List<ServerInterceptor> interceptors = new ArrayList<>(); field in AuthorizationServerInterceptor
|
/external/flatbuffers/grpc/examples/swift/Greeter/Sources/server/ |
D | main.swift | 25 var interceptors: models_GreeterServerInterceptorFactoryProtocol? variable
|
/external/aws-sdk-java-v2/codegen/src/test/resources/software/amazon/awssdk/codegen/poet/builder/ |
D | test-query-async-client-builder-class.java | 43 …List<ExecutionInterceptor> interceptors = clientConfiguration.option(SdkClientOption.EXECUTION_INT… in buildClient() local
|