Home
last modified time | relevance | path

Searched refs:INTERCEPT_FUNCTION (Results 1 – 12 of 12) sorted by relevance

/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc124 #define MSAN_MAYBE_INTERCEPT_FREAD_UNLOCKED INTERCEPT_FUNCTION(fread_unlocked)
185 #define MSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
223 #define MSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
240 #define MSAN_MAYBE_INTERCEPT_CFREE INTERCEPT_FUNCTION(cfree)
263 #define MSAN_MAYBE_INTERCEPT_MALLINFO INTERCEPT_FUNCTION(mallinfo)
272 #define MSAN_MAYBE_INTERCEPT_MALLOPT INTERCEPT_FUNCTION(mallopt)
281 #define MSAN_MAYBE_INTERCEPT_MALLOC_STATS INTERCEPT_FUNCTION(malloc_stats)
340 #define MSAN_MAYBE_INTERCEPT___STRDUP INTERCEPT_FUNCTION(__strdup)
367 #define MSAN_MAYBE_INTERCEPT___STRNDUP INTERCEPT_FUNCTION(__strndup)
464 INTERCEPT_FUNCTION(func); \ in INTERCEPTORS_STRTO()
[all …]
/external/compiler-rt/lib/lsan/
Dlsan_interceptors.cc278 INTERCEPT_FUNCTION(malloc); in InitializeInterceptors()
279 INTERCEPT_FUNCTION(free); in InitializeInterceptors()
280 INTERCEPT_FUNCTION(cfree); in InitializeInterceptors()
281 INTERCEPT_FUNCTION(calloc); in InitializeInterceptors()
282 INTERCEPT_FUNCTION(realloc); in InitializeInterceptors()
283 INTERCEPT_FUNCTION(memalign); in InitializeInterceptors()
284 INTERCEPT_FUNCTION(posix_memalign); in InitializeInterceptors()
285 INTERCEPT_FUNCTION(__libc_memalign); in InitializeInterceptors()
286 INTERCEPT_FUNCTION(valloc); in InitializeInterceptors()
287 INTERCEPT_FUNCTION(pvalloc); in InitializeInterceptors()
[all …]
/external/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cc296 INTERCEPT_FUNCTION(pthread_mutex_destroy); in InitializeInterceptors()
297 INTERCEPT_FUNCTION(pthread_mutex_lock); in InitializeInterceptors()
298 INTERCEPT_FUNCTION(pthread_mutex_trylock); in InitializeInterceptors()
299 INTERCEPT_FUNCTION(pthread_mutex_unlock); in InitializeInterceptors()
301 INTERCEPT_FUNCTION(pthread_spin_destroy); in InitializeInterceptors()
302 INTERCEPT_FUNCTION(pthread_spin_lock); in InitializeInterceptors()
303 INTERCEPT_FUNCTION(pthread_spin_trylock); in InitializeInterceptors()
304 INTERCEPT_FUNCTION(pthread_spin_unlock); in InitializeInterceptors()
306 INTERCEPT_FUNCTION(pthread_rwlock_destroy); in InitializeInterceptors()
307 INTERCEPT_FUNCTION(pthread_rwlock_rdlock); in InitializeInterceptors()
[all …]
/external/compiler-rt/lib/esan/
Desan_interceptors.cpp50 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name)
276 #define ESAN_MAYBE_INTERCEPT_OPEN64 INTERCEPT_FUNCTION(open64)
295 #define ESAN_MAYBE_INTERCEPT_CREAT64 INTERCEPT_FUNCTION(creat64)
368 #define ESAN_MAYBE_INTERCEPT_MMAP64 INTERCEPT_FUNCTION(mmap64)
388 #define ESAN_MAYBE_INTERCEPT_SIGNAL INTERCEPT_FUNCTION(signal)
420 #define ESAN_MAYBE_INTERCEPT_SIGACTION INTERCEPT_FUNCTION(sigaction)
438 #define ESAN_MAYBE_INTERCEPT_SIGPROCMASK INTERCEPT_FUNCTION(sigprocmask)
455 #define ESAN_MAYBE_INTERCEPT_PTHREAD_SIGMASK INTERCEPT_FUNCTION(pthread_sigmask)
515 INTERCEPT_FUNCTION(strcpy); // NOLINT in initializeInterceptors()
516 INTERCEPT_FUNCTION(strncpy); in initializeInterceptors()
[all …]
/external/compiler-rt/lib/dfsan/
Ddfsan_interceptors.cc40 INTERCEPT_FUNCTION(mmap); in InitializeInterceptors()
41 INTERCEPT_FUNCTION(mmap64); in InitializeInterceptors()
/external/compiler-rt/lib/interception/
Dinterception.h244 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_LINUX_OR_FREEBSD(func) macro
249 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_MAC(func) macro
254 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_WIN(func) macro
/external/compiler-rt/lib/interception/tests/
Dinterception_linux_test.cc46 ASSERT_TRUE(INTERCEPT_FUNCTION(isdigit)); in TEST()
/external/compiler-rt/lib/asan/
Dasan_interceptors.h96 if ((!INTERCEPT_FUNCTION(name) || !REAL(name))) \ in DECLARE_REAL()
Dasan_win_dll_thunk.cc420 INTERCEPT_FUNCTION(_except_handler4); in InterceptHooks()
/external/compiler-rt/lib/cfi/
Dcfi.cc404 INTERCEPT_FUNCTION(dlopen); in __cfi_init()
405 INTERCEPT_FUNCTION(dlclose); in __cfi_init()
/external/compiler-rt/lib/safestack/
Dsafestack.cc227 INTERCEPT_FUNCTION(pthread_create); in __safestack_init()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interceptors.cc305 #define TSAN_INTERCEPT(func) INTERCEPT_FUNCTION(func)
307 # define TSAN_INTERCEPT_VER(func, ver) INTERCEPT_FUNCTION(func)
2160 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name)