Lines Matching defs:INTERCEPTOR
244 INTERCEPTOR(int, pthread_create, void *thread, void *attr,
290 INTERCEPTOR(int, pthread_join, void *thread, void **retval) {
299 INTERCEPTOR(int, pthread_detach, void *thread) {
308 INTERCEPTOR(void, pthread_exit, void *retval) {
314 INTERCEPTOR(int, pthread_tryjoin_np, void *thread, void **ret) {
325 INTERCEPTOR(int, pthread_timedjoin_np, void *thread, void **ret,
359 INTERCEPTOR(void, __makecontext_v2, struct ucontext_t *ucp, void (*func)(),
362 INTERCEPTOR(void, makecontext, struct ucontext_t *ucp, void (*func)(), int argc,
399 INTERCEPTOR(int, swapcontext, struct ucontext_t *oucp,
435 INTERCEPTOR(void, longjmp, void *env, int val) {
441 INTERCEPTOR(void, _longjmp, void *env, int val) {
448 INTERCEPTOR(void, __longjmp_chk, void *env, int val) {
455 INTERCEPTOR(void, siglongjmp, void *env, int val) {
462 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) {
470 INTERCEPTOR(void, __cxa_rethrow_primary_exception, void *a) {
478 INTERCEPTOR(_Unwind_Reason_Code, _Unwind_RaiseException,
487 INTERCEPTOR(_Unwind_Reason_Code, _Unwind_SjLj_RaiseException,
497 INTERCEPTOR(char*, index, const char *string, int c)
511 INTERCEPTOR(char *, strcat, char *to, const char *from) {
532 INTERCEPTOR(char*, strncat, char *to, const char *from, uptr size) {
551 INTERCEPTOR(char *, strcpy, char *to, const char *from) {
584 INTERCEPTOR(char*, strdup, const char *s) {
602 INTERCEPTOR(char*, __strdup, const char *s) {
620 INTERCEPTOR(char*, strncpy, char *to, const char *from, uptr size) {
646 INTERCEPTOR(ret_type, func, const char *nptr, char **endptr, int base) { \
661 INTERCEPTOR(int, atoi, const char *nptr) {
681 INTERCEPTOR(long, atol, const char *nptr) {
697 INTERCEPTOR(long long, atoll, const char *nptr) {
719 INTERCEPTOR(int, __cxa_atexit, void (*func)(void *), void *arg,
734 INTERCEPTOR(int, atexit, void (*func)()) {
752 INTERCEPTOR(int, pthread_atfork, void (*prepare)(), void (*parent)(),