Home | History | Annotate | Download | only in asan

Lines Matching refs:INTERCEPTOR

123 INTERCEPTOR(int, pthread_create, void *thread,
134 INTERCEPTOR(void*, signal, int signum, void *handler) {
141 INTERCEPTOR(int, sigaction, int signum, const struct sigaction *act,
167 INTERCEPTOR(int, swapcontext, struct ucontext_t *oucp,
190 INTERCEPTOR(void, longjmp, void *env, int val) {
196 INTERCEPTOR(void, _longjmp, void *env, int val) {
203 INTERCEPTOR(void, siglongjmp, void *env, int val) {
210 INTERCEPTOR(void, __cxa_throw, void *a, void *b, void *c) {
228 INTERCEPTOR(int, mlock, const void *addr, uptr len) {
233 INTERCEPTOR(int, munlock, const void *addr, uptr len) {
238 INTERCEPTOR(int, mlockall, int flags) {
243 INTERCEPTOR(int, munlockall, void) {
259 INTERCEPTOR(int, memcmp, const void *a1, const void *a2, uptr size) {
287 INTERCEPTOR(void*, memcpy, void *to, const void *from, uptr size) {
309 INTERCEPTOR(void*, memmove, void *to, const void *from, uptr size) {
324 INTERCEPTOR(void*, memset, void *block, int c, uptr size) {
337 INTERCEPTOR(char*, strchr, const char *str, int c) {
355 INTERCEPTOR(char*, index, const char *string, int c)
369 INTERCEPTOR(char*, strcat, char *to, const char *from) { // NOLINT
388 INTERCEPTOR(char*, strncat, char *to, const char *from, uptr size) {
405 INTERCEPTOR(int, strcmp, const char *s1, const char *s2) {
423 INTERCEPTOR(char*, strcpy, char *to, const char *from) { // NOLINT
443 INTERCEPTOR(char*, strdup, const char *s) {
462 INTERCEPTOR(uptr, strlen, const char *s) {
478 INTERCEPTOR(int, strcasecmp, const char *s1, const char *s2) {
492 INTERCEPTOR(int, strncasecmp, const char *s1, const char *s2, uptr n) {
507 INTERCEPTOR(int, strncmp, const char *s1, const char *s2, uptr size) {
527 INTERCEPTOR(char*, strncpy, char *to, const char *from, uptr size) {
539 INTERCEPTOR(uptr, strnlen, const char *s, uptr maxlen) {
566 INTERCEPTOR(long, strtol, const char *nptr, // NOLINT
584 INTERCEPTOR(int, atoi, const char *nptr) {
603 INTERCEPTOR(long, atol, const char *nptr) { // NOLINT
619 INTERCEPTOR(long long, strtoll, const char *nptr, // NOLINT
640 INTERCEPTOR(long long, atoll, const char *nptr) { // NOLINT