Searched defs:INTERCEPTOR (Results 1 - 6 of 6) sorted by relevance

/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc61 INTERCEPTOR(void, free, void *ptr) { function
66 INTERCEPTOR(void, cfree, void *ptr) { function
71 INTERCEPTOR(void*, malloc, uptr size) { function
76 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) { function
92 INTERCEPTOR(void*, realloc, void *ptr, uptr size) {
97 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) {
102 INTERCEPTOR(void*, __libc_memalign, uptr align, uptr s)
105 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) {
118 INTERCEPTOR(struct fake_mallinfo, mallinfo, void) {
124 INTERCEPTOR(in
[all...]
H A Dasan_malloc_mac.cc78 INTERCEPTOR(void, free, void *ptr) { function
111 INTERCEPTOR(void, __CFInitialize) { function
H A Dasan_interceptors.cc108 INTERCEPTOR(int, pthread_create, void *thread, function
119 INTERCEPTOR(void*, signal, int signum, void *handler) { function
126 INTERCEPTOR(int, sigaction, int signum, const struct sigaction *act, function
139 INTERCEPTOR(void, longjmp, void *env, int val) { function
145 INTERCEPTOR(void, _longjmp, void *env, int val) { function
152 INTERCEPTOR(void, siglongjmp, void *env, int val) { function
159 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) { function
177 INTERCEPTOR(int, mlock, const void *addr, uptr len) { function
182 INTERCEPTOR(int, munlock, const void *addr, uptr len) { function
187 INTERCEPTOR(in function
192 INTERCEPTOR(int, munlockall, void) { function
208 INTERCEPTOR(int, memcmp, const void *a1, const void *a2, uptr size) { function
227 INTERCEPTOR(void*, memcpy, void *to, const void *from, uptr size) { function
246 INTERCEPTOR(void*, memmove, void *to, const void *from, uptr size) { function
258 INTERCEPTOR(void*, memset, void *block, int c, uptr size) { function
270 INTERCEPTOR(char*, strchr, const char *str, int c) { function
299 INTERCEPTOR(char*, strcat, char *to, const char *from) { // NOLINT function
318 INTERCEPTOR(char*, strncat, char *to, const char *from, uptr size) { function
335 INTERCEPTOR(int, strcmp, const char *s1, const char *s2) { function
355 INTERCEPTOR(char*, strcpy, char *to, const char *from) { // NOLINT function
375 INTERCEPTOR(char*, strdup, const char *s) { function
388 INTERCEPTOR(uptr, strlen, const char *s) { function
406 INTERCEPTOR(int, strcasecmp, const char *s1, const char *s2) { function
420 INTERCEPTOR(int, strncasecmp, const char *s1, const char *s2, uptr n) { function
435 INTERCEPTOR(int, strncmp, const char *s1, const char *s2, uptr size) { function
457 INTERCEPTOR(char*, strncpy, char *to, const char *from, uptr size) { function
469 INTERCEPTOR(uptr, strnlen, const char *s, uptr maxlen) { function
496 INTERCEPTOR(long, strtol, const char *nptr, // NOLINT function
514 INTERCEPTOR(int, atoi, const char *nptr) { function
533 INTERCEPTOR(long, atol, const char *nptr) { // NOLINT function
549 INTERCEPTOR(long long, strtoll, const char *nptr, // NOLINT function
570 INTERCEPTOR(long long, atoll, const char *nptr) { // NOLINT function
[all...]
H A Dasan_mac.cc332 INTERCEPTOR(void, dispatch_x_f, dispatch_queue_t dq, void *ctxt, \
349 INTERCEPTOR(void, dispatch_after_f, dispatch_time_t when, function
362 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group, function
405 INTERCEPTOR(void, dispatch_async, function
411 INTERCEPTOR(void, dispatch_group_async, function
417 INTERCEPTOR(void, dispatch_after, function
423 INTERCEPTOR(void, dispatch_source_set_cancel_handler, function
429 INTERCEPTOR(void, dispatch_source_set_event_handler, function
455 INTERCEPTOR(int, pthread_workqueue_additem_np, pthread_workqueue_t workq, function
483 INTERCEPTOR(CFStringRe function
[all...]
/external/compiler-rt/lib/interception/
H A Dinterception.h38 // 1) define INTERCEPTOR(int, foo, const char *bar, double baz) { ... } in
49 // INTERCEPTOR(..., foo, ...) are in different files, you'll instead need to:
58 // INTERCEPTOR(int, foo, const char *bar, double baz) {...}
147 // Generally, you don't need to use DEFINE_REAL by itself, as INTERCEPTOR
149 // without defining INTERCEPTOR(..., foo, ...). For example, if you override
163 #define INTERCEPTOR(ret_type, func, ...) \ macro
/external/v8/src/
H A Dproperty-details.h63 INTERCEPTOR = 5, // only in lookup results, not in descriptors enumerator in enum:v8::internal::PropertyType

Completed in 99 milliseconds