| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/interception/ |
| H A D | interception_win.h | 22 namespace __interception { 64 ::__interception::OverrideFunction(#func, \ 65 (::__interception::uptr)WRAP(func), \ 66 (::__interception::uptr *)&REAL(func)) 69 ::__interception::OverrideFunction((::__interception::uptr)func, \ 70 (::__interception::uptr)WRAP(func), \ 71 (::__interception::uptr *)&REAL(func)) 77 ::__interception::OverrideImportedFunction( \ 78 user_dll, provider_dll, #func, (::__interception::uptr)WRAP(func), \ 79 (::__interception::uptr *)&REAL(func))
|
| H A D | interception_linux.h | 23 namespace __interception { 31 ::__interception::GetRealFunctionAddress( \ 32 #func, (::__interception::uptr *)&__interception::PTR_TO_REAL(func), \ 33 (::__interception::uptr) & (func), \ 34 (::__interception::uptr) & WRAP(func)) 39 (::__interception::real_##func = (func##_type)( \ 40 unsigned long)::__interception::GetFuncAddrVer(#func, symver))
|
| H A D | interception.h | 170 # define REAL(x) __interception::PTR_TO_REAL(x) 175 namespace __interception { \ 201 namespace __interception { \ 253 namespace __interception { \ 266 namespace __interception {
|
| H A D | interception_linux.cc | 24 namespace __interception { namespace
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/interception/ |
| H A D | interception_win.h | 24 namespace __interception { 66 ::__interception::OverrideFunction(#func, \ 67 (::__interception::uptr)WRAP(func), \ 68 (::__interception::uptr *)&REAL(func)) 71 ::__interception::OverrideFunction((::__interception::uptr)func, \ 72 (::__interception::uptr)WRAP(func), \ 73 (::__interception::uptr *)&REAL(func)) 79 ::__interception::OverrideImportedFunction( \ 80 user_dll, provider_dll, #func, (::__interception::uptr)WRAP(func), \ 81 (::__interception::uptr *)&REAL(func))
|
| H A D | interception_linux.h | 25 namespace __interception { 33 ::__interception::GetRealFunctionAddress( \ 34 #func, (::__interception::uptr *)&__interception::PTR_TO_REAL(func), \ 35 (::__interception::uptr) & (func), \ 36 (::__interception::uptr) & WRAP(func)) 41 (::__interception::real_##func = (func##_type)( \ 42 unsigned long)::__interception::GetFuncAddrVer(#func, symver))
|
| H A D | interception.h | 172 # define REAL(x) __interception::PTR_TO_REAL(x) 177 namespace __interception { \ 203 namespace __interception { \ 255 namespace __interception { \ 268 namespace __interception {
|
| H A D | interception_linux.cc | 26 namespace __interception { namespace
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/interception/ |
| H A D | interception_win.h | 23 namespace __interception { 65 ::__interception::OverrideFunction(#func, \ 66 (::__interception::uptr)WRAP(func), \ 67 (::__interception::uptr *)&REAL(func)) 70 ::__interception::OverrideFunction((::__interception::uptr)func, \ 71 (::__interception::uptr)WRAP(func), \ 72 (::__interception::uptr *)&REAL(func)) 78 ::__interception::OverrideImportedFunction( \ 79 user_dll, provider_dll, #func, (::__interception::uptr)WRAP(func), \ 80 (::__interception::uptr *)&REAL(func))
|
| H A D | interception_linux.h | 24 namespace __interception { 32 ::__interception::InterceptFunction( \ 34 (::__interception::uptr *) & REAL(func), \ 35 (::__interception::uptr) & (func), \ 36 (::__interception::uptr) & WRAP(func)) 41 ::__interception::InterceptFunction( \ 43 (::__interception::uptr *) & REAL(func), \ 44 (::__interception::uptr) & (func), \ 45 (::__interception::uptr) & WRAP(func))
|
| H A D | interception.h | 162 # define REAL(x) __interception::PTR_TO_REAL(x) 167 namespace __interception { \ 199 namespace __interception { \ 251 namespace __interception { \ 264 namespace __interception {
|
| H A D | interception_linux.cpp | 21 namespace __interception { namespace
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| H A D | sanitizer_win_dll_thunk.cc | 28 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); in dllThunkGetRealAddrOrDie() 36 if (!__interception::OverrideFunction(dll_function, wrapper, 0)) in dllThunkIntercept() 43 uptr wrapper = __interception::InternalGetProcAddress( in dllThunkInterceptWhenPossible() 47 if (!__interception::OverrideFunction(dll_function, wrapper, 0)) in dllThunkInterceptWhenPossible()
|
| H A D | sanitizer_win_weak_interception.cc | 32 uptr real = __interception::InternalGetProcAddress( in interceptWhenPossible() 34 if (real && !__interception::OverrideFunction((uptr)dll_function, real, 0)) in interceptWhenPossible()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_win_dll_thunk.cc | 26 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); in dllThunkGetRealAddrOrDie() 34 if (!__interception::OverrideFunction(dll_function, wrapper, 0)) in dllThunkIntercept() 41 uptr wrapper = __interception::InternalGetProcAddress( in dllThunkInterceptWhenPossible() 45 if (!__interception::OverrideFunction(dll_function, wrapper, 0)) in dllThunkInterceptWhenPossible()
|
| H A D | sanitizer_win_weak_interception.cc | 30 uptr real = __interception::InternalGetProcAddress( in interceptWhenPossible() 32 if (real && !__interception::OverrideFunction((uptr)dll_function, real, 0)) in interceptWhenPossible()
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/ |
| H A D | sanitizer_win_dll_thunk.cpp | 27 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); in dllThunkGetRealAddrOrDie() 35 if (!__interception::OverrideFunction(dll_function, wrapper, 0)) in dllThunkIntercept() 42 uptr wrapper = __interception::InternalGetProcAddress( in dllThunkInterceptWhenPossible() 46 if (!__interception::OverrideFunction(dll_function, wrapper, 0)) in dllThunkInterceptWhenPossible()
|
| H A D | sanitizer_win_weak_interception.cpp | 31 uptr real = __interception::InternalGetProcAddress( in interceptWhenPossible() 33 if (real && !__interception::OverrideFunction((uptr)dll_function, real, 0)) in interceptWhenPossible()
|
| /netbsd-src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| H A D | asan_malloc_win.cpp | 485 if (!__interception::OverrideFunction(fname, new_func)) in TryToOverrideFunction() 517 __interception::OverrideFunction("RtlSizeHeap", (uptr)WRAP(RtlSizeHeap), in ReplaceSystemMalloc() 519 __interception::OverrideFunction("RtlFreeHeap", (uptr)WRAP(RtlFreeHeap), in ReplaceSystemMalloc() 521 __interception::OverrideFunction("RtlReAllocateHeap", in ReplaceSystemMalloc() 524 __interception::OverrideFunction("RtlAllocateHeap", in ReplaceSystemMalloc()
|
| H A D | asan_win.cpp | 181 if (!::__interception::OverrideFunction("RaiseException", in InitializePlatformInterceptors() 184 CHECK(::__interception::OverrideFunction("RtlRaiseException", in InitializePlatformInterceptors()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| H A D | asan_win.cc | 180 if (!::__interception::OverrideFunction("RaiseException", in InitializePlatformInterceptors() 183 CHECK(::__interception::OverrideFunction("RtlRaiseException", in InitializePlatformInterceptors()
|
| H A D | asan_malloc_win.cc | 215 if (!__interception::OverrideFunction(fname, new_func)) in TryToOverrideFunction()
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| H A D | asan_win.cc | 182 if (!::__interception::OverrideFunction("RaiseException", in InitializePlatformInterceptors() 185 CHECK(::__interception::OverrideFunction("RtlRaiseException", in InitializePlatformInterceptors()
|
| H A D | asan_malloc_win.cc | 222 if (!__interception::OverrideFunction(fname, new_func)) in TryToOverrideFunction()
|
| /netbsd-src/sys/external/bsd/compiler_rt/dist/lib/interception/tests/ |
| H A D | interception_linux_test.cc | 35 namespace __interception { namespace
|