Searched refs:OverrideFunction (Results 1 – 5 of 5) 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 | 29 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, \
|
D | interception_win.cc | 135 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()
|