HomeSort by relevance Sort by last modified time
    Searched refs:INTERCEPT_FUNCTION (Results 1 - 4 of 4) sorted by null

  /external/compiler-rt/lib/msan/
msan_interceptors.cc 982 INTERCEPT_FUNCTION(mmap);
983 INTERCEPT_FUNCTION(mmap64);
984 INTERCEPT_FUNCTION(posix_memalign);
985 INTERCEPT_FUNCTION(malloc);
986 INTERCEPT_FUNCTION(calloc);
987 INTERCEPT_FUNCTION(realloc);
988 INTERCEPT_FUNCTION(free);
989 INTERCEPT_FUNCTION(fread);
990 INTERCEPT_FUNCTION(fread_unlocked);
991 INTERCEPT_FUNCTION(readlink)
    [all...]
  /external/compiler-rt/lib/interception/
interception.h 39 // 2) Call "INTERCEPT_FUNCTION(foo)" prior to the first call of "foo".
40 // INTERCEPT_FUNCTION(foo) evaluates to "true" iff the function was
47 // However, if the call "INTERCEPT_FUNCTION(foo)" and definition for
81 // INTERCEPT_FUNCTION() is effectively a no-op on this system.
205 // INTERCEPT_FUNCTION macro, only its name.
218 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_LINUX(func)
221 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_MAC(func)
224 # define INTERCEPT_FUNCTION(func) INTERCEPT_FUNCTION_WIN(func)
  /external/compiler-rt/lib/asan/
asan_interceptors.cc 654 if (!INTERCEPT_FUNCTION(name) && flags()->verbosity > 0) \
755 INTERCEPT_FUNCTION(__cxa_throw);
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 195 #define TSAN_INTERCEPT(func) INTERCEPT_FUNCTION(func)
    [all...]

Completed in 1342 milliseconds