Home
last modified time | relevance | path

Searched defs:INTERCEPTOR (Results 1 – 18 of 18) sorted by relevance

/freebsd-src/contrib/llvm-project/compiler-rt/lib/memprof/
H A Dmemprof_malloc_linux.cpp37 INTERCEPTOR(void, free, void *ptr) { in INTERCEPTOR() function
45 INTERCEPTOR(void, cfree, void *ptr) { in INTERCEPTOR() function
53 INTERCEPTOR(void *, malloc, uptr size) { in INTERCEPTOR() function
61 INTERCEPTOR(void *, calloc, uptr nmemb, uptr size) { in INTERCEPTOR() function
69 INTERCEPTOR(void *, realloc, void *ptr, uptr size) { in INTERCEPTOR() function
78 INTERCEPTOR(void *, reallocarray, void *ptr, uptr nmemb, uptr size) { in INTERCEPTOR() function
86 INTERCEPTOR(void *, memalign, uptr boundary, uptr size) { in INTERCEPTOR() function
91 INTERCEPTOR(void *, __libc_memalign, uptr boundary, uptr size) { in INTERCEPTOR() function
100 INTERCEPTOR(void *, aligned_alloc, uptr boundary, uptr size) { in INTERCEPTOR() function
106 INTERCEPTOR(upt function
121 INTERCEPTOR(struct fake_mallinfo, mallinfo, void) { INTERCEPTOR() function
127 INTERCEPTOR(int, mallopt, int cmd, int value) { return 0; } INTERCEPTOR() function
130 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) { INTERCEPTOR() function
135 INTERCEPTOR(void *, valloc, uptr size) { INTERCEPTOR() function
141 INTERCEPTOR(void *, pvalloc, uptr size) { INTERCEPTOR() function
147 INTERCEPTOR(void, malloc_stats, void) { __memprof_print_accumulated_stats(); } INTERCEPTOR() function
[all...]
H A Dmemprof_interceptors.cpp134 INTERCEPTOR(int, pthread_create, void *thread, void *attr, in INTERCEPTOR() function
165 INTERCEPTOR(int, pthread_join, void *t, void **arg) { in INTERCEPTOR() function
176 INTERCEPTOR(char *, strcat, char *to, const char *from) { in INTERCEPTOR() function
188 INTERCEPTOR(char *, strncat, char *to, const char *from, uptr size) { in INTERCEPTOR() function
201 INTERCEPTOR(char *, strcpy, char *to, const char *from) { in INTERCEPTOR() function
214 INTERCEPTOR(char *, strdup, const char *s) { in INTERCEPTOR() function
228 INTERCEPTOR(char *, __strdup, const char *s) { in INTERCEPTOR() function
242 INTERCEPTOR(char *, strncpy, char *to, const char *from, uptr size) { in INTERCEPTOR() function
252 INTERCEPTOR(lon function
262 INTERCEPTOR(int, atoi, const char *nptr) { INTERCEPTOR() function
277 INTERCEPTOR(long, atol, const char *nptr) { INTERCEPTOR() function
288 INTERCEPTOR(long long, strtoll, const char *nptr, char **endptr, int base) { INTERCEPTOR() function
298 INTERCEPTOR(long long, atoll, const char *nptr) { INTERCEPTOR() function
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cpp43 INTERCEPTOR(int, pthread_mutex_destroy, pthread_mutex_t *m) { in INTERCEPTOR() function
49 INTERCEPTOR(int, pthread_mutex_lock, pthread_mutex_t *m) { in INTERCEPTOR() function
57 INTERCEPTOR(int, pthread_mutex_trylock, pthread_mutex_t *m) { in INTERCEPTOR() function
65 INTERCEPTOR(int, pthread_mutex_unlock, pthread_mutex_t *m) { in INTERCEPTOR() function
71 INTERCEPTOR(int, pthread_spin_destroy, pthread_spinlock_t *m) { in INTERCEPTOR() function
78 INTERCEPTOR(int, pthread_spin_lock, pthread_spinlock_t *m) { in INTERCEPTOR() function
86 INTERCEPTOR(int, pthread_spin_trylock, pthread_spinlock_t *m) { in INTERCEPTOR() function
94 INTERCEPTOR(int, pthread_spin_unlock, pthread_spinlock_t *m) { in INTERCEPTOR() function
100 INTERCEPTOR(int, pthread_rwlock_destroy, pthread_rwlock_t *m) { in INTERCEPTOR() function
106 INTERCEPTOR(int, pthread_rwlock_rdlock, pthread_rwlock_t *m) { in INTERCEPTOR() function
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cpp36 INTERCEPTOR(void *, reallocarray, void *ptr, SIZE_T nmemb, SIZE_T size) { in INTERCEPTOR() function
40 INTERCEPTOR(void *, __libc_memalign, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
47 INTERCEPTOR(void *, aligned_alloc, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
51 INTERCEPTOR(void *, calloc, SIZE_T nmemb, SIZE_T size) { in INTERCEPTOR() function
57 INTERCEPTOR(void *, realloc, void *ptr, SIZE_T size) { in INTERCEPTOR() function
63 INTERCEPTOR(void *, malloc, SIZE_T size) { in INTERCEPTOR() function
69 INTERCEPTOR(void, free, void *ptr) { in INTERCEPTOR() function
77 INTERCEPTOR(void, cfree, void *ptr) { in INTERCEPTOR() function
85 INTERCEPTOR(int, posix_memalign, void **memptr, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
93 INTERCEPTOR(void *, memalign, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
[all …]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/lsan/
H A Dlsan_interceptors.cpp71 INTERCEPTOR(void*, malloc, uptr size) { in INTERCEPTOR() function
79 INTERCEPTOR(void, free, void *p) { in INTERCEPTOR() function
86 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) { INTERCEPTOR() function
94 INTERCEPTOR(void *, realloc, void *ptr, uptr size) { INTERCEPTOR() function
102 INTERCEPTOR(void*, reallocarray, void *q, uptr nmemb, uptr size) { INTERCEPTOR() function
108 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) { INTERCEPTOR() function
114 INTERCEPTOR(void*, valloc, uptr size) { INTERCEPTOR() function
122 INTERCEPTOR(void*, memalign, uptr alignment, uptr size) { INTERCEPTOR() function
133 INTERCEPTOR(void *, __libc_memalign, uptr alignment, uptr size) { INTERCEPTOR() function
146 INTERCEPTOR(void*, aligned_alloc, uptr alignment, uptr size) { INTERCEPTOR() function
157 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { INTERCEPTOR() function
172 INTERCEPTOR(struct fake_mallinfo, mallinfo, void) { INTERCEPTOR() function
179 INTERCEPTOR(int, mallopt, int cmd, int value) { INTERCEPTOR() function
189 INTERCEPTOR(void*, pvalloc, uptr size) { INTERCEPTOR() function
207 INTERCEPTOR(int, mcheck, void (*abortfunc)(int mstatus)) { INTERCEPTOR() function
211 INTERCEPTOR(int, mcheck_pedantic, void (*abortfunc)(int mstatus)) { INTERCEPTOR() function
215 INTERCEPTOR(int, mprobe, void *ptr) { INTERCEPTOR() function
306 INTERCEPTOR(void *, _Znwm, size_t size) INTERCEPTOR() function
308 INTERCEPTOR(void *, _Znam, size_t size) INTERCEPTOR() function
310 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) INTERCEPTOR() function
312 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) INTERCEPTOR() function
315 INTERCEPTOR(void, _ZdlPv, void *ptr) INTERCEPTOR() function
317 INTERCEPTOR(void, _ZdaPv, void *ptr) INTERCEPTOR() function
319 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) INTERCEPTOR() function
321 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) INTERCEPTOR() function
346 INTERCEPTOR(void, _lwp_exit) { INTERCEPTOR() function
357 INTERCEPTOR(void, thr_exit, tid_t *state) { INTERCEPTOR() function
368 INTERCEPTOR(int, __cxa_atexit, void (*func)(void *), void *arg, INTERCEPTOR() function
379 INTERCEPTOR(int, atexit, void (*f)()) { INTERCEPTOR() function
394 INTERCEPTOR(int, pthread_atfork, void (*prepare)(), void (*parent)(), INTERCEPTOR() function
407 INTERCEPTOR(char *, strerror, int errnum) { INTERCEPTOR() function
439 INTERCEPTOR(int, pthread_create, void *th, void *attr, INTERCEPTOR() function
475 INTERCEPTOR(int, pthread_join, void *thread, void **retval) { INTERCEPTOR() function
484 INTERCEPTOR(int, pthread_detach, void *thread) { INTERCEPTOR() function
493 INTERCEPTOR(void, pthread_exit, void *retval) { INTERCEPTOR() function
499 INTERCEPTOR(int, pthread_tryjoin_np, void *thread, void **ret) { INTERCEPTOR() function
513 INTERCEPTOR(int, pthread_timedjoin_np, void *thread, void **ret, INTERCEPTOR() function
530 INTERCEPTOR(void, _exit, int status) { INTERCEPTOR() function
[all...]
H A Dlsan_mac.cpp128 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group, in INTERCEPTOR() function
/freebsd-src/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cpp49 INTERCEPTOR(void, free, void *ptr) { in INTERCEPTOR() function
57 INTERCEPTOR(void, cfree, void *ptr) { in INTERCEPTOR() function
65 INTERCEPTOR(void*, malloc, uptr size) { in INTERCEPTOR() function
72 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) { in INTERCEPTOR() function
79 INTERCEPTOR(void*, realloc, void *ptr, uptr size) { in INTERCEPTOR() function
87 INTERCEPTOR(void*, reallocarray, void *ptr, uptr nmemb, uptr size) { in INTERCEPTOR() function
95 INTERCEPTOR(void*, memalign, uptr boundary, uptr size) { in INTERCEPTOR() function
100 INTERCEPTOR(void*, __libc_memalign, uptr boundary, uptr size) { in INTERCEPTOR() function
109 INTERCEPTOR(void*, aligned_alloc, uptr boundary, uptr size) { in INTERCEPTOR() function
115 INTERCEPTOR(upt function
130 INTERCEPTOR(struct fake_mallinfo, mallinfo, void) { INTERCEPTOR() function
136 INTERCEPTOR(int, mallopt, int cmd, int value) { INTERCEPTOR() function
141 INTERCEPTOR(int, posix_memalign, void **memptr, uptr alignment, uptr size) { INTERCEPTOR() function
146 INTERCEPTOR(void*, valloc, uptr size) { INTERCEPTOR() function
152 INTERCEPTOR(void*, pvalloc, uptr size) { INTERCEPTOR() function
158 INTERCEPTOR(void, malloc_stats, void) { INTERCEPTOR() function
[all...]
H A Dasan_interceptors.cpp244 INTERCEPTOR(int, pthread_create, void *thread, void *attr, in INTERCEPTOR() function
290 INTERCEPTOR(int, pthread_join, void *thread, void **retval) { in INTERCEPTOR() function
299 INTERCEPTOR(int, pthread_detach, void *thread) { in INTERCEPTOR() function
308 INTERCEPTOR(void, pthread_exit, void *retval) { in INTERCEPTOR() function
314 INTERCEPTOR(int, pthread_tryjoin_np, void *thread, void **ret) { in INTERCEPTOR() function
325 INTERCEPTOR(int, pthread_timedjoin_np, void *thread, void **ret, in INTERCEPTOR() function
355 INTERCEPTOR(void, makecontext, struct ucontext_t *ucp, void (*func)(), int argc, INTERCEPTOR() function
387 INTERCEPTOR(int, swapcontext, struct ucontext_t *oucp, INTERCEPTOR() function
423 INTERCEPTOR(void, longjmp, void *env, int val) { INTERCEPTOR() function
429 INTERCEPTOR(void, _longjmp, void *env, int val) { INTERCEPTOR() function
436 INTERCEPTOR(void, __longjmp_chk, void *env, int val) { INTERCEPTOR() function
443 INTERCEPTOR(void, siglongjmp, void *env, int val) { INTERCEPTOR() function
450 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) { INTERCEPTOR() function
458 INTERCEPTOR(void, __cxa_rethrow_primary_exception, void *a) { INTERCEPTOR() function
466 INTERCEPTOR(_Unwind_Reason_Code, _Unwind_RaiseException, INTERCEPTOR() function
475 INTERCEPTOR(_Unwind_Reason_Code, _Unwind_SjLj_RaiseException, INTERCEPTOR() function
520 INTERCEPTOR(char*, strncat, char *to, const char *from, uptr size) { INTERCEPTOR() function
539 INTERCEPTOR(char *, strcpy, char *to, const char *from) { INTERCEPTOR() function
561 INTERCEPTOR(char*, strdup, const char *s) { INTERCEPTOR() function
579 INTERCEPTOR(char*, __strdup, const char *s) { INTERCEPTOR() function
597 INTERCEPTOR(char*, strncpy, char *to, const char *from, uptr size) { INTERCEPTOR() function
658 INTERCEPTOR(long, atol, const char *nptr) { INTERCEPTOR() function
674 INTERCEPTOR(long long, atoll, const char *nptr) { INTERCEPTOR() function
696 INTERCEPTOR(int, __cxa_atexit, void (*func)(void *), void *arg, INTERCEPTOR() function
711 INTERCEPTOR(int, atexit, void (*func)()) { INTERCEPTOR() function
729 INTERCEPTOR(int, pthread_atfork, void (*prepare)(), void (*parent)(), INTERCEPTOR() function
[all...]
H A Dasan_new_delete.cpp110 INTERCEPTOR(void *, _Znwm, size_t size) { in INTERCEPTOR() function
113 INTERCEPTOR(void *, _Znam, size_t size) { in INTERCEPTOR() function
116 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) { in INTERCEPTOR() function
119 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) { in INTERCEPTOR() function
179 INTERCEPTOR(void, _ZdlPv, void *ptr) in INTERCEPTOR() function
181 INTERCEPTOR(void, _ZdaPv, void *ptr) in INTERCEPTOR() function
183 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) in INTERCEPTOR() function
185 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) in INTERCEPTOR() function
H A Dasan_mac.cpp233 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group, INTERCEPTOR() function
309 INTERCEPTOR(void *, dispatch_mach_create, const char *label, INTERCEPTOR() function
322 INTERCEPTOR(void *, dispatch_mach_create_f, const char *label, INTERCEPTOR() function
[all...]
H A Dasan_win_dll_thunk.cpp109 INTERCEPTOR(int, _except_handler4, void *a, void *b, void *c, void *d) { in INTERCEPTOR() function
H A Dasan_win.cpp117 INTERCEPTOR(int, _except_handler3, void *a, void *b, void *c, void *d) { in INTERCEPTOR() function
127 INTERCEPTOR(int, _except_handler4, void *a, void *b, void *c, void *d) { in INTERCEPTOR() function
/freebsd-src/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp125 INTERCEPTOR(SIZE_T, fread_unlocked, void *ptr, SIZE_T size, SIZE_T nmemb, in INTERCEPTOR() function
139 INTERCEPTOR(void *, mempcpy, void *dest, const void *src, SIZE_T n) { in INTERCEPTOR() function
147 INTERCEPTOR(void *, memccpy, void *dest, const void *src, int c, SIZE_T n) { in INTERCEPTOR() function
157 INTERCEPTOR(void *, bcopy, const void *src, void *dest, SIZE_T n) { in INTERCEPTOR() function
161 INTERCEPTOR(int, posix_memalign, void **memptr, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
171 INTERCEPTOR(void *, memalign, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
180 INTERCEPTOR(void *, aligned_alloc, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
186 INTERCEPTOR(void *, __libc_memalign, SIZE_T alignment, SIZE_T size) { in INTERCEPTOR() function
198 INTERCEPTOR(void *, valloc, SIZE_T size) { in INTERCEPTOR() function
204 INTERCEPTOR(voi function
213 INTERCEPTOR(void, free, void *ptr) { INTERCEPTOR() function
223 INTERCEPTOR(void, cfree, void *ptr) { INTERCEPTOR() function
237 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) { INTERCEPTOR() function
258 INTERCEPTOR(__sanitizer_struct_mallinfo, mallinfo) { INTERCEPTOR() function
269 INTERCEPTOR(__sanitizer_struct_mallinfo2, mallinfo2) { INTERCEPTOR() function
280 INTERCEPTOR(int, mallopt, int cmd, int value) { INTERCEPTOR() function
289 INTERCEPTOR(void, malloc_stats, void) { INTERCEPTOR() function
297 INTERCEPTOR(char *, strcpy, char *dest, const char *src) { INTERCEPTOR() function
307 INTERCEPTOR(char *, strncpy, char *dest, const char *src, SIZE_T n) { INTERCEPTOR() function
320 INTERCEPTOR(char *, stpcpy, char *dest, const char *src) { INTERCEPTOR() function
330 INTERCEPTOR(char *, stpncpy, char *dest, const char *src, SIZE_T n) { INTERCEPTOR() function
346 INTERCEPTOR(char *, strdup, char *src) { INTERCEPTOR() function
359 INTERCEPTOR(char *, __strdup, char *src) { INTERCEPTOR() function
374 INTERCEPTOR(char *, gcvt, double number, SIZE_T ndigit, char *buf) { INTERCEPTOR() function
386 INTERCEPTOR(char *, strcat, char *dest, const char *src) { INTERCEPTOR() function
398 INTERCEPTOR(char *, strncat, char *dest, const char *src, SIZE_T n) { INTERCEPTOR() function
575 INTERCEPTOR(int, swprintf, void *str, uptr size, void *format, ...) { INTERCEPTOR() function
591 INTERCEPTOR(SIZE_T, strftime, char *s, SIZE_T max, const char *format, INTERCEPTOR() function
596 INTERCEPTOR(SIZE_T, strftime_l, char *s, SIZE_T max, const char *format, INTERCEPTOR() function
602 INTERCEPTOR(SIZE_T, __strftime_l, char *s, SIZE_T max, const char *format, INTERCEPTOR() function
612 INTERCEPTOR(SIZE_T, wcsftime, wchar_t *s, SIZE_T max, const wchar_t *format, INTERCEPTOR() function
617 INTERCEPTOR(SIZE_T, wcsftime_l, wchar_t *s, SIZE_T max, const wchar_t *format, INTERCEPTOR() function
624 INTERCEPTOR(SIZE_T, __wcsftime_l, wchar_t *s, SIZE_T max, const wchar_t *format, INTERCEPTOR() function
634 INTERCEPTOR(int, mbtowc, wchar_t *dest, const char *src, SIZE_T n) { INTERCEPTOR() function
641 INTERCEPTOR(SIZE_T, mbrtowc, wchar_t *dest, const char *src, SIZE_T n, INTERCEPTOR() function
650 INTERCEPTOR(wchar_t *, wmemcpy, wchar_t *dest, const wchar_t *src, SIZE_T n) { INTERCEPTOR() function
659 INTERCEPTOR(wchar_t *, wmempcpy, wchar_t *dest, const wchar_t *src, SIZE_T n) { INTERCEPTOR() function
671 INTERCEPTOR(wchar_t *, wmemset, wchar_t *s, wchar_t c, SIZE_T n) { INTERCEPTOR() function
679 INTERCEPTOR(wchar_t *, wmemmove, wchar_t *dest, const wchar_t *src, SIZE_T n) { INTERCEPTOR() function
687 INTERCEPTOR(int, wcscmp, const wchar_t *s1, const wchar_t *s2) { INTERCEPTOR() function
693 INTERCEPTOR(int, gettimeofday, void *tv, void *tz) { INTERCEPTOR() function
704 INTERCEPTOR(char *, fcvt, double x, int a, int *b, int *c) { INTERCEPTOR() function
718 INTERCEPTOR(char *, getenv, char *name) { INTERCEPTOR() function
740 INTERCEPTOR(int, setenv, const char *name, const char *value, int overwrite) { INTERCEPTOR() function
748 INTERCEPTOR(int, putenv, char *string) { INTERCEPTOR() function
757 INTERCEPTOR(int, fstat, int fd, void *buf) { INTERCEPTOR() function
770 INTERCEPTOR(int, fstat64, int fd, void *buf) { INTERCEPTOR() function
783 INTERCEPTOR(int, __fxstat, int magic, int fd, void *buf) { INTERCEPTOR() function
796 INTERCEPTOR(int, __fxstat64, int magic, int fd, void *buf) { INTERCEPTOR() function
809 INTERCEPTOR(int, fstatat, int fd, char *pathname, void *buf, int flags) { INTERCEPTOR() function
821 INTERCEPTOR(int, fstatat64, int fd, char *pathname, void *buf, int flags) { INTERCEPTOR() function
834 INTERCEPTOR(int, __fxstatat, int magic, int fd, char *pathname, void *buf, INTERCEPTOR() function
847 INTERCEPTOR(int, __fxstatat64, int magic, int fd, char *pathname, void *buf, INTERCEPTOR() function
859 INTERCEPTOR(int, pipe, int pipefd[2]) { INTERCEPTOR() function
869 INTERCEPTOR(int, pipe2, int pipefd[2], int flags) { INTERCEPTOR() function
877 INTERCEPTOR(int, socketpair, int domain, int type, int protocol, int sv[2]) { INTERCEPTOR() function
886 INTERCEPTOR(char *, fgets_unlocked, char *s, int size, void *stream) { INTERCEPTOR() function
907 INTERCEPTOR(int, getrlimit, int resource, void *rlim) { INTERCEPTOR() function
912 INTERCEPTOR(int, __getrlimit, int resource, void *rlim) { INTERCEPTOR() function
916 INTERCEPTOR(int, getrlimit64, int resource, void *rlim) { INTERCEPTOR() function
924 INTERCEPTOR(int, prlimit, int pid, int resource, void *new_rlimit, INTERCEPTOR() function
935 INTERCEPTOR(int, prlimit64, int pid, int resource, void *new_rlimit, INTERCEPTOR() function
957 INTERCEPTOR(int, gethostname, char *name, SIZE_T len) { INTERCEPTOR() function
970 INTERCEPTOR(int, epoll_wait, int epfd, void *events, int maxevents, INTERCEPTOR() function
985 INTERCEPTOR(int, epoll_pwait, int epfd, void *events, int maxevents, INTERCEPTOR() function
999 INTERCEPTOR(void *, calloc, SIZE_T nmemb, SIZE_T size) { INTERCEPTOR() function
1006 INTERCEPTOR(void *, realloc, void *ptr, SIZE_T size) { INTERCEPTOR() function
1013 INTERCEPTOR(void *, reallocarray, void *ptr, SIZE_T nmemb, SIZE_T size) { INTERCEPTOR() function
1018 INTERCEPTOR(void *, malloc, SIZE_T size) { INTERCEPTOR() function
1091 INTERCEPTOR(int, getrusage, int who, void *usage) { INTERCEPTOR() function
1164 INTERCEPTOR(int, pthread_create, void *th, void *attr, void *(*callback)(void*), INTERCEPTOR() function
1187 INTERCEPTOR(int, pthread_key_create, __sanitizer_pthread_key_t *key, INTERCEPTOR() function
1203 INTERCEPTOR(int, pthread_join, void *thread, void **retval) { INTERCEPTOR() function
1212 INTERCEPTOR(int, pthread_tryjoin_np, void *thread, void **retval) { INTERCEPTOR() function
1220 INTERCEPTOR(int, pthread_timedjoin_np, void *thread, void **retval, INTERCEPTOR() function
1233 INTERCEPTOR(void, tzset, int fake) { INTERCEPTOR() function
1292 INTERCEPTOR(int, __cxa_atexit, void (*func)(void *), void *arg, INTERCEPTOR() function
1299 INTERCEPTOR(int, atexit, void (*func)()) { INTERCEPTOR() function
1332 INTERCEPTOR(int, openpty, int *aparent, int *aworker, char *name, INTERCEPTOR() function
1351 INTERCEPTOR(int, forkpty, int *aparent, char *name, const void *termp, INTERCEPTOR() function
1584 INTERCEPTOR(const char *, strsignal, int sig) { INTERCEPTOR() function
1593 INTERCEPTOR(int, dladdr, void *addr, void *info) { INTERCEPTOR() function
1603 INTERCEPTOR(int, dladdr1, void *addr, void *info, void **extra_info, INTERCEPTOR() function
1619 INTERCEPTOR(char *, dlerror, int fake) { INTERCEPTOR() function
1649 INTERCEPTOR(void *, shmat, int shmid, const void *shmaddr, int shmflg) { INTERCEPTOR() function
1662 INTERCEPTOR(int, dl_iterate_phdr, dl_iterate_phdr_cb callback, void *data) { INTERCEPTOR() function
1673 INTERCEPTOR(wchar_t *, wcschr, void *s, wchar_t wc, void *ps) { INTERCEPTOR() function
1680 INTERCEPTOR(wchar_t *, wcscpy, wchar_t *dest, const wchar_t *src) { INTERCEPTOR() function
1689 INTERCEPTOR(wchar_t *, wcsncpy, wchar_t *dest, const wchar_t *src, SIZE_T n) { INTERCEPTOR() function
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_interceptors.cpp268 INTERCEPTOR(int, pthread_create, void *thread, void *attr, in INTERCEPTOR() function
293 INTERCEPTOR(int, pthread_join, void *thread, void **retval) { in INTERCEPTOR() function
302 INTERCEPTOR(int, pthread_detach, void *thread) { in INTERCEPTOR() function
311 INTERCEPTOR(void, pthread_exit, void *retval) { in INTERCEPTOR() function
317 INTERCEPTOR(int, pthread_tryjoin_np, void *thread, void **ret) { in INTERCEPTOR() function
326 INTERCEPTOR(int, pthread_timedjoin_np, void *thread, void **ret, in INTERCEPTOR() function
466 INTERCEPTOR(void, siglongjmp, __hw_sigjmp_buf env, int val) { in INTERCEPTOR() function
483 INTERCEPTOR(void, __libc_longjmp, __hw_jmp_buf env, int val) { in INTERCEPTOR() function
489 INTERCEPTOR(void, longjmp, __hw_jmp_buf env, int val) { in INTERCEPTOR() function
/freebsd-src/contrib/llvm-project/compiler-rt/lib/interception/
H A Dinterception.h296 #define INTERCEPTOR(ret_type, func, ...) \ macro
303 #define INTERCEPTOR(ret_type, func, ...) \ macro
320 #define INTERCEPTOR(ret_typ macro
[all...]
/freebsd-src/contrib/llvm-project/compiler-rt/lib/cfi/
H A Dcfi.cpp427 INTERCEPTOR(void*, dlopen, const char *filename, int flag) { in INTERCEPTOR() function
435 INTERCEPTOR(int, dlclose, void *handle) { in INTERCEPTOR() function
/freebsd-src/contrib/llvm-project/compiler-rt/lib/safestack/
H A Dsafestack.cpp208 INTERCEPTOR(int, pthread_create, pthread_t *thread, INTERCEPTOR() function
/freebsd-src/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp1211 INTERCEPTOR(int, pthread_cond_init, void *c, void *a) { INTERCEPTOR() function
1242 INTERCEPTOR(int, pthread_cond_wait, void *c, void *m) { INTERCEPTOR() function
1250 INTERCEPTOR(int, pthread_cond_timedwait, void *c, void *m, void *abstime) { INTERCEPTOR() function
1260 INTERCEPTOR(int, pthread_cond_clockwait, void *c, void *m, INTERCEPTOR() function
1275 INTERCEPTOR(int, pthread_cond_timedwait_relative_np, void *c, void *m, INTERCEPTOR() function
1288 INTERCEPTOR(int, pthread_cond_signal, void *c) { INTERCEPTOR() function
1295 INTERCEPTOR(int, pthread_cond_broadcast, void *c) { INTERCEPTOR() function
1302 INTERCEPTOR(int, pthread_cond_destroy, void *c) { INTERCEPTOR() function