Searched refs:INTERCEPT_FUNCTION_VER (Results 1 – 7 of 7) sorted by relevance
| /src/contrib/llvm-project/compiler-rt/lib/tsan/dd/ |
| H A D | dd_interceptors.cpp | 315 INTERCEPT_FUNCTION_VER(pthread_cond_init, "GLIBC_2.3.2"); in InitializeInterceptors() 316 INTERCEPT_FUNCTION_VER(pthread_cond_signal, "GLIBC_2.3.2"); in InitializeInterceptors() 317 INTERCEPT_FUNCTION_VER(pthread_cond_broadcast, "GLIBC_2.3.2"); in InitializeInterceptors() 318 INTERCEPT_FUNCTION_VER(pthread_cond_wait, "GLIBC_2.3.2"); in InitializeInterceptors() 319 INTERCEPT_FUNCTION_VER(pthread_cond_timedwait, "GLIBC_2.3.2"); in InitializeInterceptors() 320 INTERCEPT_FUNCTION_VER(pthread_cond_destroy, "GLIBC_2.3.2"); in InitializeInterceptors()
|
| /src/contrib/llvm-project/compiler-rt/lib/memprof/ |
| H A D | memprof_interceptors.h | 50 if (!INTERCEPT_FUNCTION_VER(name, ver)) \ 55 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \
|
| /src/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_interceptors.h | 142 if (!INTERCEPT_FUNCTION_VER(name, ver)) \ 148 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \
|
| /src/contrib/llvm-project/compiler-rt/lib/interception/ |
| H A D | interception.h | 372 # define INTERCEPT_FUNCTION_VER(func, symver) \ macro 377 # define INTERCEPT_FUNCTION_VER(func, symver) \ macro 382 # define INTERCEPT_FUNCTION_VER(func, symver) \ macro
|
| /src/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_interceptors.cpp | 558 INTERCEPT_FUNCTION_VER(func, ver); \ 559 INTERCEPT_FUNCTION_VER(func##_l, ver); \ 560 INTERCEPT_FUNCTION_VER(__##func##_l, ver); \ 561 INTERCEPT_FUNCTION_VER(__##func##_internal, ver); 1394 if (!INTERCEPT_FUNCTION_VER(name, ver)) \ 1400 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \ 1848 INTERCEPT_FUNCTION_VER(vswprintf, SANITIZER_NLDBL_VERSION); in InitializeInterceptors() 1849 INTERCEPT_FUNCTION_VER(swprintf, SANITIZER_NLDBL_VERSION); in InitializeInterceptors() 1900 INTERCEPT_FUNCTION_VER(pthread_create, "GLIBC_2.2"); in InitializeInterceptors()
|
| /src/contrib/llvm-project/compiler-rt/lib/hwasan/ |
| H A D | hwasan_interceptors.cpp | 58 if (!INTERCEPT_FUNCTION_VER(name, ver)) \ 64 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \
|
| /src/contrib/llvm-project/compiler-rt/lib/tsan/rtl/ |
| H A D | tsan_interceptors_posix.cpp | 336 # define TSAN_INTERCEPT_VER(func, ver) INTERCEPT_FUNCTION_VER(func, ver) 2440 INTERCEPT_FUNCTION_VER(name, ver) 2442 (INTERCEPT_FUNCTION_VER(name, ver) || INTERCEPT_FUNCTION(name))
|