Searched refs:InternalGetProcAddress (Results 1 – 9 of 9) sorted by relevance
/external/llvm-project/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_win_dll_thunk.cpp | 27 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); in dllThunkGetRealAddrOrDie() 42 uptr wrapper = __interception::InternalGetProcAddress( in dllThunkInterceptWhenPossible()
|
D | sanitizer_win_weak_interception.cpp | 31 uptr real = __interception::InternalGetProcAddress( in interceptWhenPossible()
|
/external/llvm-project/compiler-rt/lib/interception/tests/ |
D | interception_win_test.cpp | 317 TEST(Interception, InternalGetProcAddress) { in TEST() argument 322 uptr DbgPrint_adddress = InternalGetProcAddress(ntdll_handle, "DbgPrint"); in TEST() 323 uptr isdigit_address = InternalGetProcAddress(ntdll_handle, "isdigit"); in TEST() 650 uptr FunPtr = InternalGetProcAddress((void *)GetModuleHandleA(0), "example"); in TEST()
|
/external/compiler-rt/lib/interception/ |
D | interception_win.h | 35 uptr InternalGetProcAddress(void *module, const char *func_name);
|
D | interception_win.cc | 793 uptr InternalGetProcAddress(void *module, const char *func_name) { in InternalGetProcAddress() function 828 *func_addr = InternalGetProcAddress(DLLs[i], func_name); in GetFunctionAddressInDLLs()
|
/external/llvm-project/compiler-rt/lib/interception/ |
D | interception_win.h | 34 uptr InternalGetProcAddress(void *module, const char *func_name);
|
D | interception_win.cpp | 882 uptr InternalGetProcAddress(void *module, const char *func_name) { in InternalGetProcAddress() function 931 return InternalGetProcAddress(redirected_module, separator + 1); in InternalGetProcAddress() 946 uptr func_addr = InternalGetProcAddress(DLLs[i], func_name); in OverrideFunction()
|
/external/compiler-rt/lib/interception/tests/ |
D | interception_win_test.cc | 267 TEST(Interception, InternalGetProcAddress) { in TEST() argument 272 uptr DbgPrint_adddress = InternalGetProcAddress(ntdll_handle, "DbgPrint"); in TEST() 273 uptr isdigit_address = InternalGetProcAddress(ntdll_handle, "isdigit"); in TEST()
|
/external/compiler-rt/lib/asan/ |
D | asan_win_dll_thunk.cc | 34 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); in getRealProcAddressOrDie()
|