Home
last modified time | relevance | path

Searched refs:OverrideFunction (Results 1 – 5 of 5) 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.h29 bool OverrideFunction(uptr old_func, uptr new_func, uptr *orig_old_func = 0);
32 bool OverrideFunction(const char *name, uptr new_func, uptr *orig_old_func = 0);
37 ::__interception::OverrideFunction(#func, \
42 ::__interception::OverrideFunction((::__interception::uptr)func, \
Dinterception_win.cc135 bool OverrideFunction(uptr old_func, uptr new_func, uptr *orig_old_func) { in OverrideFunction() function
137 #error OverrideFunction is not yet supported on x64 in OverrideFunction()
212 bool OverrideFunction(const char *name, uptr new_func, uptr *orig_old_func) { in OverrideFunction() function
216 return OverrideFunction(orig_func, new_func, orig_old_func); in OverrideFunction()