Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_win_dll_thunk.cpp27 __interception::InternalGetProcAddress((void *)GetModuleHandleA(0), name); in dllThunkGetRealAddrOrDie()
42 uptr wrapper = __interception::InternalGetProcAddress( in dllThunkInterceptWhenPossible()
H A Dsanitizer_win_weak_interception.cpp31 uptr real = __interception::InternalGetProcAddress( in interceptWhenPossible()
/llvm-project-15.0.7/compiler-rt/lib/interception/tests/
H A Dinterception_win_test.cpp356 TEST(Interception, InternalGetProcAddress) { in TEST() argument
361 uptr DbgPrint_adddress = InternalGetProcAddress(ntdll_handle, "DbgPrint"); in TEST()
362 uptr isdigit_address = InternalGetProcAddress(ntdll_handle, "isdigit"); in TEST()
695 uptr FunPtr = InternalGetProcAddress((void *)GetModuleHandleA(0), "example"); in TEST()
/llvm-project-15.0.7/compiler-rt/lib/interception/
H A Dinterception_win.h34 uptr InternalGetProcAddress(void *module, const char *func_name);
H A Dinterception_win.cpp931 uptr InternalGetProcAddress(void *module, const char *func_name) { in InternalGetProcAddress() function
980 return InternalGetProcAddress(redirected_module, separator + 1); in InternalGetProcAddress()
995 uptr func_addr = InternalGetProcAddress(DLLs[i], func_name); in OverrideFunction()