Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/compiler-rt/lib/interception/tests/
H A Dinterception_win_test.cpp374 TEST(Interception, InternalGetProcAddress) { in TEST() argument
379 uptr DbgPrint_adddress = InternalGetProcAddress(ntdll_handle, "DbgPrint"); in TEST()
380 uptr isdigit_address = InternalGetProcAddress(ntdll_handle, "isdigit"); in TEST()
717 uptr FunPtr = InternalGetProcAddress((void *)GetModuleHandleA(0), "example"); in TEST()
/openbsd-src/gnu/llvm/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()