HomeSort by: relevance | last modified time | path
    Searched refs:INTERCEPT_FUNCTION (Results 1 - 11 of 11) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_interceptors.cc 106 #define LSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
115 #define LSAN_MAYBE_INTERCEPT___LIBC_MEMALIGN INTERCEPT_FUNCTION(__libc_memalign)
127 #define LSAN_MAYBE_INTERCEPT_ALIGNED_ALLOC INTERCEPT_FUNCTION(aligned_alloc)
138 INTERCEPT_FUNCTION(malloc_usable_size)
153 #define LSAN_MAYBE_INTERCEPT_MALLINFO INTERCEPT_FUNCTION(mallinfo)
158 #define LSAN_MAYBE_INTERCEPT_MALLOPT INTERCEPT_FUNCTION(mallopt)
170 #define LSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
177 #define LSAN_MAYBE_INTERCEPT_CFREE INTERCEPT_FUNCTION(cfree)
327 #define LSAN_MAYBE_INTERCEPT__LWP_EXIT INTERCEPT_FUNCTION(_lwp_exit)
338 #define LSAN_MAYBE_INTERCEPT_THR_EXIT INTERCEPT_FUNCTION(thr_exit
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_interceptors.cc 295 INTERCEPT_FUNCTION(pthread_mutex_destroy);
296 INTERCEPT_FUNCTION(pthread_mutex_lock);
297 INTERCEPT_FUNCTION(pthread_mutex_trylock);
298 INTERCEPT_FUNCTION(pthread_mutex_unlock);
300 INTERCEPT_FUNCTION(pthread_spin_destroy);
301 INTERCEPT_FUNCTION(pthread_spin_lock);
302 INTERCEPT_FUNCTION(pthread_spin_trylock);
303 INTERCEPT_FUNCTION(pthread_spin_unlock);
305 INTERCEPT_FUNCTION(pthread_rwlock_destroy);
306 INTERCEPT_FUNCTION(pthread_rwlock_rdlock)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_interceptors.cc 142 #define MSAN_MAYBE_INTERCEPT_FREAD_UNLOCKED INTERCEPT_FUNCTION(fread_unlocked)
151 #define MSAN_MAYBE_INTERCEPT_MEMPCPY INTERCEPT_FUNCTION(mempcpy)
184 #define MSAN_MAYBE_INTERCEPT_MEMALIGN INTERCEPT_FUNCTION(memalign)
202 #define MSAN_MAYBE_INTERCEPT___LIBC_MEMALIGN INTERCEPT_FUNCTION(__libc_memalign)
217 #define MSAN_MAYBE_INTERCEPT_PVALLOC INTERCEPT_FUNCTION(pvalloc)
234 #define MSAN_MAYBE_INTERCEPT_CFREE INTERCEPT_FUNCTION(cfree)
244 INTERCEPT_FUNCTION(malloc_usable_size)
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
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/interception/tests/
interception_linux_test.cc 49 ASSERT_TRUE(INTERCEPT_FUNCTION(isdigit));
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_signals_standalone.cc 39 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name)
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_interceptors.h 119 if ((!INTERCEPT_FUNCTION(name) || !REAL(name))) \
129 // OS X interceptors don't need to be initialized with INTERCEPT_FUNCTION.
asan_win_dll_thunk.cc 132 INTERCEPT_FUNCTION(_except_handler4);
asan_interceptors.cc 638 INTERCEPT_FUNCTION(_Unwind_RaiseException);
642 INTERCEPT_FUNCTION(_Unwind_SjLj_RaiseException);
  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception.h 43 // 2) Call "INTERCEPT_FUNCTION(foo)" prior to the first call of "foo".
44 // INTERCEPT_FUNCTION(foo) evaluates to "true" iff the function was
51 // However, if the call "INTERCEPT_FUNCTION(foo)" and definition for
90 // INTERCEPT_FUNCTION() is effectively a no-op on this system.
267 // INTERCEPT_FUNCTION macro, only its name.
282 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_LINUX_OR_FREEBSD(func)
287 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_MAC(func)
292 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_WIN(func)
  /src/sys/external/bsd/compiler_rt/dist/lib/safestack/
safestack.cc 261 INTERCEPT_FUNCTION(pthread_create);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interceptors.cc 298 #define TSAN_INTERCEPT(func) INTERCEPT_FUNCTION(func)
300 # define TSAN_INTERCEPT_VER(func, ver) INTERCEPT_FUNCTION(func)
304 # define TSAN_INTERCEPT_VER(func, ver) INTERCEPT_FUNCTION(func)
306 INTERCEPT_FUNCTION(__libc_##func)
308 INTERCEPT_FUNCTION(__libc_thr_##func)
2230 #define COMMON_INTERCEPT_FUNCTION(name) INTERCEPT_FUNCTION(name)

Completed in 17 milliseconds