Home
last modified time | relevance | path

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

/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc121 #define MSAN_MAYBE_INTERCEPT_FREAD_UNLOCKED INTERCEPT_FUNCTION(fread_unlocked)
182 #define MSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
220 #define MSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
237 #define MSAN_MAYBE_INTERCEPT_CFREE INTERCEPT_FUNCTION(cfree)
260 #define MSAN_MAYBE_INTERCEPT_MALLINFO INTERCEPT_FUNCTION(mallinfo)
269 #define MSAN_MAYBE_INTERCEPT_MALLOPT INTERCEPT_FUNCTION(mallopt)
278 #define MSAN_MAYBE_INTERCEPT_MALLOC_STATS INTERCEPT_FUNCTION(malloc_stats)
354 #define MSAN_MAYBE_INTERCEPT___STRDUP INTERCEPT_FUNCTION(__strdup)
381 #define MSAN_MAYBE_INTERCEPT___STRNDUP INTERCEPT_FUNCTION(__strndup)
478 INTERCEPT_FUNCTION(func); \ in INTERCEPTORS_STRTO()
[all …]
/external/compiler-rt/lib/lsan/
Dlsan_interceptors.cc265 INTERCEPT_FUNCTION(malloc); in InitializeInterceptors()
266 INTERCEPT_FUNCTION(free); in InitializeInterceptors()
267 INTERCEPT_FUNCTION(cfree); in InitializeInterceptors()
268 INTERCEPT_FUNCTION(calloc); in InitializeInterceptors()
269 INTERCEPT_FUNCTION(realloc); in InitializeInterceptors()
270 INTERCEPT_FUNCTION(memalign); in InitializeInterceptors()
271 INTERCEPT_FUNCTION(posix_memalign); in InitializeInterceptors()
272 INTERCEPT_FUNCTION(__libc_memalign); in InitializeInterceptors()
273 INTERCEPT_FUNCTION(valloc); in InitializeInterceptors()
274 INTERCEPT_FUNCTION(pvalloc); in InitializeInterceptors()
[all …]
/external/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cc299 INTERCEPT_FUNCTION(pthread_mutex_destroy); in InitializeInterceptors()
300 INTERCEPT_FUNCTION(pthread_mutex_lock); in InitializeInterceptors()
301 INTERCEPT_FUNCTION(pthread_mutex_trylock); in InitializeInterceptors()
302 INTERCEPT_FUNCTION(pthread_mutex_unlock); in InitializeInterceptors()
304 INTERCEPT_FUNCTION(pthread_spin_destroy); in InitializeInterceptors()
305 INTERCEPT_FUNCTION(pthread_spin_lock); in InitializeInterceptors()
306 INTERCEPT_FUNCTION(pthread_spin_trylock); in InitializeInterceptors()
307 INTERCEPT_FUNCTION(pthread_spin_unlock); in InitializeInterceptors()
309 INTERCEPT_FUNCTION(pthread_rwlock_destroy); in InitializeInterceptors()
310 INTERCEPT_FUNCTION(pthread_rwlock_rdlock); 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/asan/
Dasan_interceptors.h98 if ((!INTERCEPT_FUNCTION(name) || !REAL(name))) \ in DECLARE_REAL()
Dasan_win_dll_thunk.cc409 INTERCEPT_FUNCTION(_except_handler4); in InterceptHooks()
/external/compiler-rt/lib/safestack/
Dsafestack.cc227 INTERCEPT_FUNCTION(pthread_create); in __safestack_init()
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interceptors.cc312 #define TSAN_INTERCEPT(func) INTERCEPT_FUNCTION(func)
314 # define TSAN_INTERCEPT_VER(func, ver) INTERCEPT_FUNCTION(func)
2308 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name)