Searched refs:__interception (Results 1 – 9 of 9) sorted by relevance
/external/compiler-rt/lib/asan/ |
D | asan_malloc_win.cc | 146 __interception::OverrideFunction("free", (uptr)free); in ReplaceSystemMalloc() 147 __interception::OverrideFunction("malloc", (uptr)malloc); in ReplaceSystemMalloc() 148 __interception::OverrideFunction("_malloc_crt", (uptr)malloc); in ReplaceSystemMalloc() 149 __interception::OverrideFunction("calloc", (uptr)calloc); in ReplaceSystemMalloc() 150 __interception::OverrideFunction("_calloc_crt", (uptr)calloc); in ReplaceSystemMalloc() 151 __interception::OverrideFunction("realloc", (uptr)realloc); in ReplaceSystemMalloc() 152 __interception::OverrideFunction("_realloc_crt", (uptr)realloc); in ReplaceSystemMalloc() 153 __interception::OverrideFunction("_recalloc", (uptr)_recalloc); in ReplaceSystemMalloc() 154 __interception::OverrideFunction("_recalloc_crt", (uptr)_recalloc); in ReplaceSystemMalloc() 155 __interception::OverrideFunction("_msize", (uptr)_msize); in ReplaceSystemMalloc() [all …]
|
D | asan_win.cc | 146 CHECK(::__interception::OverrideFunction( in InitializePlatformInterceptors()
|
D | asan_win_dll_thunk.cc | 68 if (!__interception::OverrideFunction((uptr)dll_function, \
|
/external/compiler-rt/lib/interception/ |
D | interception_win.h | 24 namespace __interception { 37 ::__interception::OverrideFunction(#func, \ 38 (::__interception::uptr)WRAP(func), \ 39 (::__interception::uptr *)&REAL(func)) 42 ::__interception::OverrideFunction((::__interception::uptr)func, \ 43 (::__interception::uptr)WRAP(func), \ 44 (::__interception::uptr *)&REAL(func))
|
D | interception_linux.h | 24 namespace __interception { 32 ::__interception::GetRealFunctionAddress( \ 33 #func, (::__interception::uptr *)&__interception::PTR_TO_REAL(func), \ 34 (::__interception::uptr) & (func), \ 35 (::__interception::uptr) & WRAP(func)) 39 ::__interception::real_##func = (func##_f)(unsigned long) \ 40 ::__interception::GetFuncAddrVer(#func, symver)
|
D | interception.h | 153 # define REAL(x) __interception::PTR_TO_REAL(x) 158 namespace __interception { \ 178 namespace __interception { \ 219 namespace __interception { \ 232 namespace __interception {
|
D | interception_linux.cc | 20 namespace __interception { namespace
|
D | interception_win.cc | 20 namespace __interception { namespace
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_interceptors.cc | 2519 using __interception::GetRealFunctionAddress; in InitializeInterceptors()
|