Lines Matching full:interceptor
149 INTERCEPTOR(int, pthread_create, void *thread,
169 INTERCEPTOR(void*, signal, int signum, void *handler) {
176 INTERCEPTOR(int, sigaction, int signum, const struct sigaction *act,
202 INTERCEPTOR(int, swapcontext, struct ucontext_t *oucp,
225 INTERCEPTOR(void, longjmp, void *env, int val) {
231 INTERCEPTOR(void, _longjmp, void *env, int val) {
238 INTERCEPTOR(void, siglongjmp, void *env, int val) {
245 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) {
265 INTERCEPTOR(int, mlock, const void *addr, uptr len) {
270 INTERCEPTOR(int, munlock, const void *addr, uptr len) {
275 INTERCEPTOR(int, mlockall, int flags) {
280 INTERCEPTOR(int, munlockall, void) {
289 INTERCEPTOR(int, memcmp, const void *a1, const void *a2, uptr size) {
317 INTERCEPTOR(void*, memcpy, void *to, const void *from, uptr size) {
339 INTERCEPTOR(void*, memmove, void *to, const void *from, uptr size) {
354 INTERCEPTOR(void*, memset, void *block, int c, uptr size) {
367 INTERCEPTOR(char*, strchr, const char *str, int c) {
385 INTERCEPTOR(char*, index, const char *string, int c)
399 INTERCEPTOR(char*, strcat, char *to, const char *from) { // NOLINT
418 INTERCEPTOR(char*, strncat, char *to, const char *from, uptr size) {
435 INTERCEPTOR(char*, strcpy, char *to, const char *from) { // NOLINT
455 INTERCEPTOR(char*, strdup, const char *s) {
469 INTERCEPTOR(uptr, strlen, const char *s) {
484 INTERCEPTOR
496 INTERCEPTOR(uptr, strnlen, const char *s, uptr maxlen) {
523 INTERCEPTOR(long, strtol, const char *nptr, // NOLINT
541 INTERCEPTOR(int, atoi, const char *nptr) {
560 INTERCEPTOR(long, atol, const char *nptr) { // NOLINT
576 INTERCEPTOR(long long, strtoll, const char *nptr, // NOLINT
597 INTERCEPTOR(long long, atoll, const char *nptr) { // NOLINT
616 INTERCEPTOR(int, __cxa_atexit, void (*func)(void *), void *arg,