Home
last modified time | relevance | path

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

/external/compiler-rt/lib/asan/
Dasan_malloc_win.cc146 __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 …]
Dasan_win.cc146 CHECK(::__interception::OverrideFunction( in InitializePlatformInterceptors()
Dasan_win_dll_thunk.cc68 if (!__interception::OverrideFunction((uptr)dll_function, \
/external/compiler-rt/lib/interception/
Dinterception_win.h24 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))
Dinterception_linux.h24 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)
Dinterception.h153 # define REAL(x) __interception::PTR_TO_REAL(x)
158 namespace __interception { \
178 namespace __interception { \
219 namespace __interception { \
232 namespace __interception {
Dinterception_linux.cc20 namespace __interception { namespace
Dinterception_win.cc20 namespace __interception { namespace
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interceptors.cc2519 using __interception::GetRealFunctionAddress; in InitializeInterceptors()