/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/ |
D | InterceptorTest.java | 70 @Override public Response intercept(Chain chain) throws IOException { in applicationInterceptorsCanShortCircuitResponses() 83 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotShortCircuitResponses() 113 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotCallProceedMultipleTimes() 137 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsCannotChangeServerAddress() 165 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsHaveConnectionAccess() 184 @Override public Response intercept(Chain chain) throws IOException { in networkInterceptorsObserveNetworkHeaders() 226 @Override public Response intercept(Chain chain) throws IOException { in rewriteRequestToServer() 264 @Override public Response intercept(Chain chain) throws IOException { in rewriteResponseFromServer() 295 @Override public Response intercept(Chain chain) throws IOException { in multipleInterceptors() 306 @Override public Response intercept(Chain chain) throws IOException { in multipleInterceptors() [all …]
|
/external/skia/bench/ |
D | bench_util.py | 306 self.intercept = a 316 str(self.intercept), 325 intercept = self.intercept 332 lower_left_y = slope*regr_start + intercept - error 333 upper_right_y = slope*regr_end + intercept + error 337 upper_left_y = slope*regr_start + intercept + error 338 lower_right_y = slope*regr_end + intercept - error
|
/external/esd/include/ |
D | audiofile.h | 519 double slope, double intercept, double minClip, double maxClip); 521 double *slope, double *intercept, double *minClip, double *maxClip); 525 double slope, double intercept, double minClip, double maxClip); 529 double slope, double intercept, double minClip, double maxClip); 531 double *slope, double *intercept, double *minClip, double *maxClip);
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/ |
D | InterceptFieldTransformer.java | 94 Label intercept = e.make_label(); in addReadMethod() local 95 e.ifnonnull(intercept); in addReadMethod() 98 e.mark(intercept); in addReadMethod()
|
/external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/ |
D | MethodInterceptor.java | 39 public Object intercept(Object obj, java.lang.reflect.Method method, Object[] args, in intercept() method
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | Interceptor.java | 26 Response intercept(Chain chain) throws IOException; in intercept() method
|
D | Call.java | 227 return client.interceptors().get(index).intercept(chain); in proceed()
|
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/recipes/ |
D | CheckHandshake.java | 33 @Override public Response intercept(Chain chain) throws IOException {
|
D | LoggingInterceptors.java | 31 @Override public Response intercept(Chain chain) throws IOException { in LoggingInterceptors()
|
D | RewriteResponseCacheControl.java | 29 @Override public Response intercept(Chain chain) throws IOException {
|
D | RequestBodyCompression.java | 69 @Override public Response intercept(Chain chain) throws IOException { in intercept() method in RequestBodyCompression.GzipRequestInterceptor
|
D | Progress.java | 50 @Override public Response intercept(Chain chain) throws IOException { in run()
|
/external/compiler-rt/lib/asan/ |
D | README.txt | 14 lib/interception/ : Machinery used to intercept function calls.
|
/external/mockito/src/org/mockito/internal/creation/ |
D | MethodInterceptorFilter.java | 44 public Object intercept(Object proxy, Method method, Object[] args, MethodProxy methodProxy) in intercept() method in MethodInterceptorFilter
|
/external/valgrind/docs/internals/ |
D | MERGE_3_10_1.txt | 172 //14721 Implement missing heap-intercept function "dh_malloc_usable_size".
|
D | 3_2_BUGSTATUS.txt | 146 r6608 r6723 32 n-i-bz intercept for __memmove_chk 267 r6553,6 r6558 32 n-i-bz DirkM __stpcpy_chk intercept
|
D | 3_3_BUGSTATUS.txt | 276 r7350 r8080 Mgd n-i-bz intercept memcpy in 64-bit ld.so's
|
D | 3_0_BUGSTATUS.txt | 342 114289 Memcheck fails to intercept malloc when used in an uclibc environment
|
/external/ltrace/ |
D | README | 8 intercept and print system calls executed by the process.
|
/external/clang/docs/ |
D | JSONCompilationDatabase.rst | 36 For projects on Linux, there is an alternative to intercept compiler
|
/external/libvncserver/VisualNaCro/ |
D | README | 27 The script now can intercept inputs and outputs, and act upon them.
|
/external/valgrind/ |
D | README_PACKAGERS | 16 Reason for this is that Valgrind's Memcheck tool needs to intercept
|
D | glibc-2.3.supp | 428 # Hacks pertaining to the fact that our intercept mechanism can't
|
/external/skia/src/core/ |
D | SkGeometry.cpp | 921 typedef int (SkDCubic::*InterceptProc)(double intercept, double roots[3]) const; 923 static bool cubic_dchop_at_intercept(const SkPoint src[4], SkScalar intercept, SkPoint dst[7], in cubic_dchop_at_intercept() argument 927 int count = (cubic.set(src).*method)(intercept, roots); in cubic_dchop_at_intercept()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | HttpEngine.java | 874 Response interceptedResponse = interceptor.intercept(chain); in proceed()
|