/external/compiler-rt/lib/asan/ |
D | asan_malloc_linux.cc | 61 INTERCEPTOR(void, free, void *ptr) { in INTERCEPTOR() function 66 INTERCEPTOR(void, cfree, void *ptr) { in INTERCEPTOR() function 71 INTERCEPTOR(void*, malloc, uptr size) { in INTERCEPTOR() function 76 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) { in INTERCEPTOR() function 92 INTERCEPTOR(void*, realloc, void *ptr, uptr size) { in INTERCEPTOR() function 97 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() function 102 INTERCEPTOR(void*, __libc_memalign, uptr align, uptr s) 105 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { in INTERCEPTOR() function 118 INTERCEPTOR(struct fake_mallinfo, mallinfo, void) { in INTERCEPTOR() function 124 INTERCEPTOR(int, mallopt, int cmd, int value) { in INTERCEPTOR() function [all …]
|
D | asan_interceptors.cc | 108 INTERCEPTOR(int, pthread_create, void *thread, in INTERCEPTOR() function 119 INTERCEPTOR(void*, signal, int signum, void *handler) { in INTERCEPTOR() function 126 INTERCEPTOR(int, sigaction, int signum, const struct sigaction *act, in INTERCEPTOR() function 139 INTERCEPTOR(void, longjmp, void *env, int val) { in INTERCEPTOR() function 145 INTERCEPTOR(void, _longjmp, void *env, int val) { in INTERCEPTOR() function 152 INTERCEPTOR(void, siglongjmp, void *env, int val) { in INTERCEPTOR() function 159 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) { in INTERCEPTOR() function 177 INTERCEPTOR(int, mlock, const void *addr, uptr len) { in INTERCEPTOR() function 182 INTERCEPTOR(int, munlock, const void *addr, uptr len) { in INTERCEPTOR() function 187 INTERCEPTOR(int, mlockall, int flags) { in INTERCEPTOR() function [all …]
|
D | asan_mac.cc | 332 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \ 349 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when, in INTERCEPT_DISPATCH_X_F_3() 362 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group, in INTERCEPTOR() function 405 INTERCEPTOR(void, dispatch_async, 411 INTERCEPTOR(void, dispatch_group_async, 417 INTERCEPTOR(void, dispatch_after, 423 INTERCEPTOR(void, dispatch_source_set_cancel_handler, 429 INTERCEPTOR(void, dispatch_source_set_event_handler, 455 INTERCEPTOR(int, pthread_workqueue_additem_np, pthread_workqueue_t workq, in INTERCEPTOR() function 483 INTERCEPTOR(CFStringRef, CFStringCreateCopy, CFAllocatorRef alloc, in INTERCEPTOR() function
|
D | asan_malloc_mac.cc | 78 INTERCEPTOR(void, free, void *ptr) { in INTERCEPTOR() function 111 INTERCEPTOR(void, __CFInitialize) { in INTERCEPTOR() function
|
/external/v8/src/ |
D | property.cc | 89 case INTERCEPTOR: in Print() 132 case INTERCEPTOR: in ContainsTransition()
|
D | property-details.h | 63 INTERCEPTOR = 5, // only in lookup results, not in descriptors enumerator
|
D | property.h | 171 case INTERCEPTOR: in IsPropertyDescriptor() 251 details_ = PropertyDetails(NONE, INTERCEPTOR); in InterceptorResult()
|
D | ic.cc | 429 || (lookup->type() != INTERCEPTOR) in LookupForRead() 441 ASSERT(lookup->type() != INTERCEPTOR); in LookupForRead() 547 if (lookup.type() == INTERCEPTOR && attr == ABSENT) { in LoadFunction() 672 case INTERCEPTOR: in ComputeMonomorphicStub() 909 (lookup.type() == INTERCEPTOR || lookup.type() == HANDLER)) { in Load() 990 case INTERCEPTOR: in UpdateCaches() 1143 if (lookup.IsFound() && lookup.type() == INTERCEPTOR) { in Load() 1238 case INTERCEPTOR: in UpdateCaches() 1286 if (lookup->type() == INTERCEPTOR && in LookupForWrite() 1452 case INTERCEPTOR: in UpdateCaches() [all …]
|
D | stub-cache.cc | 198 Code::Flags flags = Code::ComputeMonomorphicFlags(Code::LOAD_IC, INTERCEPTOR); in ComputeLoadInterceptor() 281 Code::ComputeMonomorphicFlags(Code::KEYED_LOAD_IC, INTERCEPTOR); in ComputeKeyedLoadInterceptor() 503 Code::STORE_IC, INTERCEPTOR, strict_mode); in ComputeStoreInterceptor() 638 Code::ComputeMonomorphicFlags(kind, INTERCEPTOR, extra_state, in ComputeCallInterceptor()
|
D | objects.cc | 333 case INTERCEPTOR: { in GetPropertyWithFailedAccessCheck() 394 case INTERCEPTOR: { in GetPropertyAttributeWithFailedAccessCheck() 630 case INTERCEPTOR: { in GetProperty() 2541 if (result->IsProperty() && (result->type() != INTERCEPTOR)) return; in LookupRealNamedPropertyInPrototypes() 2575 case INTERCEPTOR: { in SetPropertyWithFailedAccessCheck() 2971 case INTERCEPTOR: in SetPropertyForResult() 3085 case INTERCEPTOR: in SetLocalPropertyIgnoreAttributes() 3215 case INTERCEPTOR: in GetPropertyAttribute() 3384 case INTERCEPTOR: in NormalizeProperties() 3964 if (result.type() == INTERCEPTOR) { in DeleteProperty() [all …]
|
D | objects-printer.cc | 303 case INTERCEPTOR: // only in lookup results, not in descriptors in PrintProperties()
|
D | ast.cc | 506 case INTERCEPTOR: in ComputeTarget()
|
D | runtime.cc | 954 case INTERCEPTOR: { in CheckAccess() 1302 if (lookup.type() != INTERCEPTOR) { in RUNTIME_FUNCTION() 1350 if (lookup.IsProperty() && (lookup.type() != INTERCEPTOR)) { in RUNTIME_FUNCTION() 1514 if (lookup.IsFound() && lookup.type() == INTERCEPTOR) { in RUNTIME_FUNCTION() 10075 case INTERCEPTOR: in DebugLookupResultValue()
|
D | bootstrapper.cc | 2208 case INTERCEPTOR: in TransferNamedProperties()
|
D | profile-generator.cc | 2140 case INTERCEPTOR: // only in lookup results, not in descriptors in ExtractPropertyReferences()
|
D | mark-compact.cc | 1901 case INTERCEPTOR: in MarkDescriptorArray()
|
D | objects-inl.h | 1984 case INTERCEPTOR: in IsTransitionOnly()
|
/external/compiler-rt/lib/interception/ |
D | interception.h | 163 #define INTERCEPTOR(ret_type, func, ...) \ macro
|
/external/v8/src/x64/ |
D | stub-cache-x64.cc | 2208 return GetCode(INTERCEPTOR, name); in CompileCallInterceptor() 2389 return GetCode(INTERCEPTOR, name); in CompileStoreInterceptor() 2655 return GetCode(INTERCEPTOR, name); in CompileLoadInterceptor() 2817 return GetCode(INTERCEPTOR, name); in CompileLoadInterceptor()
|
/external/v8/src/ia32/ |
D | stub-cache-ia32.cc | 2379 return GetCode(INTERCEPTOR, name); in CompileCallInterceptor() 2559 return GetCode(INTERCEPTOR, name); in CompileStoreInterceptor() 2826 return GetCode(INTERCEPTOR, name); in CompileLoadInterceptor() 2995 return GetCode(INTERCEPTOR, name); in CompileLoadInterceptor()
|
/external/v8/src/arm/ |
D | stub-cache-arm.cc | 2468 return GetCode(INTERCEPTOR, name); in CompileCallInterceptor() 2638 return GetCode(INTERCEPTOR, name); in CompileStoreInterceptor() 2802 return GetCode(INTERCEPTOR, name); in CompileLoadInterceptor() 2943 return GetCode(INTERCEPTOR, name); in CompileLoadInterceptor()
|
/external/v8/src/mips/ |
D | stub-cache-mips.cc | 2462 return GetCode(INTERCEPTOR, name); in CompileCallInterceptor() 2635 return GetCode(INTERCEPTOR, name); in CompileStoreInterceptor() 2800 return GetCode(INTERCEPTOR, name); in CompileLoadInterceptor() 2936 return GetCode(INTERCEPTOR, name); in CompileLoadInterceptor()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interceptors.cc | 186 #define TSAN_INTERCEPTOR(ret, func, ...) INTERCEPTOR(ret, func, __VA_ARGS__)
|
/external/srec/config/en.us/dictionary/ |
D | c0.6 | 56776 INTERCEPTOR IH2 N T ER0 S EH1 P T ER0 56777 INTERCEPTOR(2) IH2 N ER0 S EH1 P T ER0
|