Home
last modified time | relevance | path

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

/external/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_win_dll_thunk.cpp27 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); in dllThunkGetRealAddrOrDie()
42 uptr wrapper = __interception::InternalGetProcAddress( in dllThunkInterceptWhenPossible()
Dsanitizer_win_weak_interception.cpp31 uptr real = __interception::InternalGetProcAddress( in interceptWhenPossible()
/external/llvm-project/compiler-rt/lib/interception/tests/
Dinterception_win_test.cpp317 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/llvm-project/compiler-rt/lib/interception/
Dinterception_win.h34 uptr InternalGetProcAddress(void *module, const char *func_name);
Dinterception_win.cpp882 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/
Dinterception_win.h35 uptr InternalGetProcAddress(void *module, const char *func_name);
Dinterception_win.cc793 uptr InternalGetProcAddress(void *module, const char *func_name) { in InternalGetProcAddress() function
828 *func_addr = InternalGetProcAddress(DLLs[i], func_name); in GetFunctionAddressInDLLs()
/external/compiler-rt/lib/interception/tests/
Dinterception_win_test.cc267 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/
Dasan_win_dll_thunk.cc34 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); in getRealProcAddressOrDie()