/external/guice/core/src/com/google/inject/internal/ |
D | MethodAspect.java | 38 private final List<MethodInterceptor> interceptors; field in MethodAspect 48 Matcher<? super Method> methodMatcher, List<MethodInterceptor> interceptors) { in MethodAspect() argument 51 this.interceptors = checkNotNull(interceptors, "interceptors"); in MethodAspect() 55 Matcher<? super Method> methodMatcher, MethodInterceptor... interceptors) { in MethodAspect() argument 56 this(classMatcher, methodMatcher, Arrays.asList(interceptors)); in MethodAspect() 67 List<MethodInterceptor> interceptors() { in interceptors() method in MethodAspect 68 return interceptors; in interceptors()
|
D | ProxyFactory.java | 56 private final ImmutableMap<Method, List<MethodInterceptor>> interceptors; field in ProxyFactory 83 interceptors = ImmutableMap.of(); in ProxyFactory() 109 new Object[] { pair.method, methodAspect.interceptors() }); in ProxyFactory() 112 pair.addAll(methodAspect.interceptors()); in ProxyFactory() 119 interceptors = ImmutableMap.of(); in ProxyFactory() 140 ImmutableSet.copyOf(pair.interceptors).asList(); in ProxyFactory() 145 interceptors = interceptorsMapBuilder != null in ProxyFactory() 154 return interceptors; in getInterceptors() 158 if (interceptors.isEmpty()) { in create() 178 return new ProxyConstructor<T>(enhancer, injectionPoint, callbacks, interceptors); in create() [all …]
|
D | InterceptorStackCallback.java | 44 final MethodInterceptor[] interceptors; field in InterceptorStackCallback 48 List<MethodInterceptor> interceptors) { in InterceptorStackCallback() argument 50 this.interceptors = interceptors.toArray(new MethodInterceptor[interceptors.size()]); in InterceptorStackCallback() 75 return index == interceptors.length in proceed() 77 : interceptors[index].invoke( in proceed()
|
D | EncounterImpl.java | 68 org.aopalliance.intercept.MethodInterceptor... interceptors) { in bindInterceptor() argument 76 aspects.add(new MethodAspect(Matchers.any(), methodMatcher, interceptors)); in bindInterceptor()
|
/external/guice/core/src/com/google/inject/spi/ |
D | InterceptorBinding.java | 49 private final ImmutableList<MethodInterceptor> interceptors; field in InterceptorBinding 55 MethodInterceptor[] interceptors) { in InterceptorBinding() argument 59 this.interceptors = ImmutableList.copyOf(interceptors); in InterceptorBinding() 75 return interceptors; in getInterceptors() 84 interceptors.toArray(new MethodInterceptor[interceptors.size()])); in applyTo()
|
D | TypeEncounter.java | 120 org.aopalliance.intercept.MethodInterceptor... interceptors); in bindInterceptor() argument
|
D | Elements.java | 227 org.aopalliance.intercept.MethodInterceptor... interceptors) { in bindInterceptor() argument 229 getElementSource(), classMatcher, methodMatcher, interceptors)); in bindInterceptor()
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | InterceptorTest.java | 68 client.interceptors().add(new Interceptor() { in applicationInterceptorsCanShortCircuitResponses() 243 rewriteRequestToServer(client.interceptors()); in applicationInterceptorsRewriteRequestToServer() 250 private void rewriteRequestToServer(List<Interceptor> interceptors) throws Exception { in rewriteRequestToServer() argument 253 interceptors.add(new Interceptor() { in rewriteRequestToServer() 279 rewriteResponseFromServer(client.interceptors()); in applicationInterceptorsRewriteResponseFromServer() 286 private void rewriteResponseFromServer(List<Interceptor> interceptors) throws Exception { in rewriteResponseFromServer() argument 291 interceptors.add(new Interceptor() { in rewriteResponseFromServer() 312 multipleInterceptors(client.interceptors()); in multipleApplicationInterceptors() 319 private void multipleInterceptors(List<Interceptor> interceptors) throws Exception { in multipleInterceptors() argument 322 interceptors.add(new Interceptor() { in multipleInterceptors() [all …]
|
D | OkHttpClientTest.java | 159 clone.interceptors().add(null); in clonedInterceptorsListsAreIndependent() 161 assertEquals(0, original.interceptors().size()); in clonedInterceptorsListsAreIndependent()
|
/external/mockito/src/main/java/org/mockito/internal/creation/bytebuddy/ |
D | MockMethodAdvice.java | 30 final WeakConcurrentMap<Object, MockMethodInterceptor> interceptors; field in MockMethodAdvice 36 …public MockMethodAdvice(WeakConcurrentMap<Object, MockMethodInterceptor> interceptors, String iden… in MockMethodAdvice() argument 37 this.interceptors = interceptors; in MockMethodAdvice() 66 MockMethodInterceptor interceptor = interceptors.get(instance); in handle() 84 return interceptors.containsKey(instance); in isMock() 269 mockMethodAdvice.interceptors.put(thiz, thiz.getMockitoInterceptor()); in doReadObject()
|
/external/guice/extensions/struts2/src/com/google/inject/struts2/ |
D | Struts2Factory.java | 56 private final List<ProvidedInterceptor> interceptors = new ArrayList<ProvidedInterceptor>(); field in Struts2Factory 133 for (ProvidedInterceptor interceptor : interceptors) { in createInjector() 140 for (ProvidedInterceptor interceptor : interceptors) { in createInjector() 161 interceptors.add(providedInterceptor); in buildInterceptor()
|
D | GuiceObjectFactory.java | 54 List<ProvidedInterceptor> interceptors field in GuiceObjectFactory 148 for (ProvidedInterceptor interceptor : interceptors) { in createInjector() 155 for (ProvidedInterceptor interceptor : interceptors) { in createInjector() 179 interceptors.add(providedInterceptor); in buildInterceptor()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | OkHttpClient.java | 125 private final List<Interceptor> interceptors = new ArrayList<>(); field in OkHttpClient 159 this.interceptors.addAll(okHttpClient.interceptors); in OkHttpClient() 546 public List<Interceptor> interceptors() { in interceptors() method in OkHttpClient 547 return interceptors; in interceptors()
|
D | Call.java | 229 if (index < client.interceptors().size()) { in proceed() 231 Interceptor interceptor = client.interceptors().get(index); in proceed()
|
/external/guice/core/src/com/google/inject/ |
D | AbstractModule.java | 170 org.aopalliance.intercept.MethodInterceptor... interceptors) { in bindInterceptor() argument 171 binder().bindInterceptor(classMatcher, methodMatcher, interceptors); in bindInterceptor()
|
D | PrivateModule.java | 228 org.aopalliance.intercept.MethodInterceptor... interceptors) { in bindInterceptor() argument 229 binder().bindInterceptor(classMatcher, methodMatcher, interceptors); in bindInterceptor()
|
D | Binder.java | 228 org.aopalliance.intercept.MethodInterceptor... interceptors); in bindInterceptor() argument
|
/external/okhttp/okhttp-logging-interceptor/ |
D | README.md | 10 client.interceptors().add(logging);
|
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/ |
D | RequestBodyCompression.java | 44 client.interceptors().add(new GzipRequestInterceptor()); in RequestBodyCompression()
|
/external/compiler-rt/cmake/Modules/ |
D | SanitizerUtils.cmake | 9 # interceptors are exported automatically, user can also provide files with
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors_format.inc | 10 // Scanf/printf implementation for use in *Sanitizer interceptors. 299 // Common part of *scanf interceptors. 492 // Common part of *printf interceptors.
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_flags.inc | 80 "Ignore reads and writes from all interceptors.")
|
/external/okhttp/ |
D | CHANGELOG.md | 112 * Fix: Allow interceptors to change the request method. 126 * Fix: Don’t crash on interceptors that throw `IOException` before a 249 Previously clones shared interceptors, which made it difficult to customize 250 the interceptors on a request-by-request basis. 347 * **OkHttp now offers interceptors.** Interceptors are a powerful mechanism
|
/external/guice/extensions/persist/lib/ |
D | xwork-2.0.4.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/opensymphony/
com/ ... |
/external/libchrome/sandbox/win/ |
D | sandbox_win.gypi | 41 'src/interceptors.h',
|