/external/compiler-rt/lib/interception/ |
interception_linux.h | 24 namespace __interception { namespace 29 } // 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)( \ 40 unsigned long)::__interception::GetFuncAddrVer(#func, symver))
|
interception_win.h | 24 namespace __interception { namespace 37 } // namespace __interception 41 ::__interception::OverrideFunction(#func, \ 42 (::__interception::uptr)WRAP(func), \ 43 (::__interception::uptr *)&REAL(func)) 46 ::__interception::OverrideFunction((::__interception::uptr)func, \ 47 (::__interception::uptr)WRAP(func), \ 48 (::__interception::uptr *)&REAL(func))
|
interception_linux.cc | 20 namespace __interception { namespace 33 } // namespace __interception
|
interception.h | 153 # define REAL(x) __interception::PTR_TO_REAL(x) 158 namespace __interception { \ 178 namespace __interception { \ 219 namespace __interception { \ 228 // so we use casting via an integral type __interception::uptr, 232 namespace __interception { namespace 238 } // namespace __interception
|
interception_win.cc | 21 namespace __interception { namespace 170 // __interception code into a separate section or something? 271 } // namespace __interception
|
/external/compiler-rt/lib/asan/ |
asan_malloc_win.cc | 146 __interception::OverrideFunction("free", (uptr)free); 147 __interception::OverrideFunction("malloc", (uptr)malloc); 148 __interception::OverrideFunction("_malloc_crt", (uptr)malloc); 149 __interception::OverrideFunction("calloc", (uptr)calloc); 150 __interception::OverrideFunction("_calloc_crt", (uptr)calloc); 151 __interception::OverrideFunction("realloc", (uptr)realloc); 152 __interception::OverrideFunction("_realloc_crt", (uptr)realloc); 153 __interception::OverrideFunction("_recalloc", (uptr)_recalloc); 154 __interception::OverrideFunction("_recalloc_crt", (uptr)_recalloc); 155 __interception::OverrideFunction("_msize", (uptr)_msize) [all...] |
asan_win.cc | 146 CHECK(::__interception::OverrideFunction(
|
asan_win_dll_thunk.cc | 34 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); 68 if (!__interception::OverrideFunction((uptr)dll_function, wrapper, 0)) \
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_interceptors.cc | [all...] |