Searched refs:INTERCEPT_FUNCTION_VER (Results 1 – 6 of 6) sorted by relevance
/openbsd-src/gnu/llvm/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()
|
/openbsd-src/gnu/llvm/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)) \
|
/openbsd-src/gnu/llvm/compiler-rt/lib/asan/ |
H A D | asan_interceptors.h | 144 if (!INTERCEPT_FUNCTION_VER(name, ver)) \ 150 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \
|
/openbsd-src/gnu/llvm/compiler-rt/lib/interception/ |
H A D | interception.h | 279 # define INTERCEPT_FUNCTION_VER(func, symver) \ macro 284 # define INTERCEPT_FUNCTION_VER(func, symver) \ macro 289 # define INTERCEPT_FUNCTION_VER(func, symver) \ macro
|
/openbsd-src/gnu/llvm/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cpp | 1307 if (!INTERCEPT_FUNCTION_VER(name, ver)) \ 1313 if (!INTERCEPT_FUNCTION_VER(name, ver) && !INTERCEPT_FUNCTION(name)) \ 1724 INTERCEPT_FUNCTION_VER(vswprintf, SANITIZER_NLDBL_VERSION); in InitializeInterceptors() 1725 INTERCEPT_FUNCTION_VER(swprintf, SANITIZER_NLDBL_VERSION); in InitializeInterceptors() 1775 INTERCEPT_FUNCTION_VER(pthread_create, "GLIBC_2.2"); in InitializeInterceptors()
|
/openbsd-src/gnu/llvm/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_interceptors_posix.cpp | 331 # define TSAN_INTERCEPT_VER(func, ver) INTERCEPT_FUNCTION_VER(func, ver) 2451 INTERCEPT_FUNCTION_VER(name, ver) 2453 (INTERCEPT_FUNCTION_VER(name, ver) || INTERCEPT_FUNCTION(name))
|