/netbsd-src/external/mit/libuv/dist/src/win/ |
H A D | winapi.c | 63 pRtlGetVersion = (sRtlGetVersion) GetProcAddress(ntdll_module, in uv__winapi_init() 66 pRtlNtStatusToDosError = (sRtlNtStatusToDosError) GetProcAddress( in uv__winapi_init() 73 pNtDeviceIoControlFile = (sNtDeviceIoControlFile) GetProcAddress( in uv__winapi_init() 80 pNtQueryInformationFile = (sNtQueryInformationFile) GetProcAddress( in uv__winapi_init() 87 pNtSetInformationFile = (sNtSetInformationFile) GetProcAddress( in uv__winapi_init() 95 GetProcAddress(ntdll_module, "NtQueryVolumeInformationFile"); in uv__winapi_init() 101 GetProcAddress(ntdll_module, "NtQueryDirectoryFile"); in uv__winapi_init() 106 pNtQuerySystemInformation = (sNtQuerySystemInformation) GetProcAddress( in uv__winapi_init() 113 pNtQueryInformationProcess = (sNtQueryInformationProcess) GetProcAddress( in uv__winapi_init() 125 pGetQueuedCompletionStatusEx = (sGetQueuedCompletionStatusEx) GetProcAddress( in uv__winapi_init() [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/ |
H A D | dbghelp.d | 16 import core.sys.windows.winbase /+: FreeLibrary, GetProcAddress, LoadLibraryA+/; 76 …sm_inst.SymInitialize = cast(SymInitializeFunc) GetProcAddress(sm_hndl,"SymInitialize"); in get() 77 … sm_inst.SymCleanup = cast(SymCleanupFunc) GetProcAddress(sm_hndl,"SymCleanup"); in get() 78 … sm_inst.StackWalk64 = cast(StackWalk64Func) GetProcAddress(sm_hndl,"StackWalk64"); in get() 79 …sm_inst.SymGetOptions = cast(SymGetOptionsFunc) GetProcAddress(sm_hndl,"SymGetOptions"); in get() 80 …sm_inst.SymSetOptions = cast(SymSetOptionsFunc) GetProcAddress(sm_hndl,"SymSetOptions"); in get() 81 …sm_inst.SymFunctionTableAccess64 = cast(SymFunctionTableAccess64Func) GetProcAddress(sm_hndl,"SymF… in get() 82 …sm_inst.SymGetLineFromAddr64 = cast(SymGetLineFromAddr64Func) GetProcAddress(sm_hndl,"SymGetLi… in get() 83 …sm_inst.SymGetModuleBase64 = cast(SymGetModuleBase64Func) GetProcAddress(sm_hndl,"SymGetModu… in get() 84 …sm_inst.SymGetModuleInfo64 = cast(SymGetModuleInfo64Func) GetProcAddress(sm_hndl,"SymGetModu… in get() [all …]
|
H A D | threadaux.d | 21 GetModuleHandleA, GetProcAddress+/; 146 …fnNtQueryInformationThread fn = cast(fnNtQueryInformationThread) GetProcAddress( nthnd, "NtQueryIn… in getTEB() 239 …fnNtQuerySystemInformation fn = cast(fnNtQuerySystemInformation) GetProcAddress( hnd, "NtQuerySyst… in enumProcessThreads()
|
/netbsd-src/external/bsd/bzip2/dist/ |
H A D | dlltest.c | 38 BZ2_bzlibVersion=GetProcAddress(hLib,"BZ2_bzlibVersion"); in BZ2DLLLoadLibrary() 39 BZ2_bzopen=GetProcAddress(hLib,"BZ2_bzopen"); in BZ2DLLLoadLibrary() 40 BZ2_bzdopen=GetProcAddress(hLib,"BZ2_bzdopen"); in BZ2DLLLoadLibrary() 41 BZ2_bzread=GetProcAddress(hLib,"BZ2_bzread"); in BZ2DLLLoadLibrary() 42 BZ2_bzwrite=GetProcAddress(hLib,"BZ2_bzwrite"); in BZ2DLLLoadLibrary() 43 BZ2_bzflush=GetProcAddress(hLib,"BZ2_bzflush"); in BZ2DLLLoadLibrary() 44 BZ2_bzclose=GetProcAddress(hLib,"BZ2_bzclose"); in BZ2DLLLoadLibrary() 45 BZ2_bzerror=GetProcAddress(hLib,"BZ2_bzerror"); in BZ2DLLLoadLibrary()
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/dso/ |
H A D | dso_win32.c | 31 # undef GetProcAddress 32 # define GetProcAddress GetProcAddressA macro 182 sym.f = GetProcAddress(*ptr, symname); in win32_bind_func() 530 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_pathbyaddr() 539 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_pathbyaddr() 543 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_pathbyaddr() 544 module_next = (MODULE32) GetProcAddress(dll, "Module32Next"); in win32_pathbyaddr() 629 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_globallookup() 638 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_globallookup() 642 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_globallookup() [all …]
|
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/dso/ |
H A D | dso_win32.c | 31 # undef GetProcAddress 32 # define GetProcAddress GetProcAddressA macro 182 sym.f = GetProcAddress(*ptr, symname); in win32_bind_func() 529 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_pathbyaddr() 538 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_pathbyaddr() 542 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_pathbyaddr() 543 module_next = (MODULE32) GetProcAddress(dll, "Module32Next"); in win32_pathbyaddr() 628 GetProcAddress(dll, "CreateToolhelp32Snapshot"); in win32_globallookup() 637 GetProcAddress(dll, "CloseToolhelp32Snapshot"); in win32_globallookup() 641 module_first = (MODULE32) GetProcAddress(dll, "Module32First"); in win32_globallookup() [all …]
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/windows/ |
H A D | advapi32.d | 27 auto IsWow64Process = cast(fptr_t) GetProcAddress(hKernel, "IsWow64Process"); in this() 46 … pRegDeleteKeyExW = cast(typeof(pRegDeleteKeyExW)) GetProcAddress(hAdvapi32 , "RegDeleteKeyExW"); in loadAdvapi32() 48 throw new Exception(`GetProcAddress(hAdvapi32 , "RegDeleteKeyExW")`); in loadAdvapi32()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/internal/windows/ |
H A D | advapi32.d | 30 auto IsWow64Process = cast(fptr_t) GetProcAddress(hKernel, "IsWow64Process"); in isWow64() 50 … pRegDeleteKeyExW = cast(typeof(pRegDeleteKeyExW)) GetProcAddress(hAdvapi32 , "RegDeleteKeyExW"); in loadAdvapi32() 52 throw new Exception(`GetProcAddress(hAdvapi32 , "RegDeleteKeyExW")`); in loadAdvapi32()
|
/netbsd-src/external/gpl3/gdb/dist/gnulib/import/ |
H A D | gettimeofday.c | 41 # define GetProcAddress \ macro 42 (void *) GetProcAddress 56 …(GetSystemTimePreciseAsFileTimeFuncType) GetProcAddress (kernel32, "GetSystemTimePreciseAsFileTime… in initialize()
|
H A D | getrandom.c | 63 # define GetProcAddress \ macro 64 (void *) GetProcAddress 79 (BCryptGenRandomFuncType) GetProcAddress (bcrypt, "BCryptGenRandom"); in initialize()
|
H A D | stat-w32.c | 69 # define GetProcAddress \ macro 70 (void *) GetProcAddress 96 … (GetFileInformationByHandleExFuncType) GetProcAddress (kernel32, "GetFileInformationByHandleEx"); in initialize() 99 (GetFinalPathNameByHandleFuncType) GetProcAddress (kernel32, "GetFinalPathNameByHandleA"); in initialize()
|
H A D | select.c | 66 #define GetProcAddress \ macro 67 (void *) GetProcAddress 160 GetProcAddress (GetModuleHandle ("ntdll.dll"), in windows_poll_handle()
|
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/ |
H A D | jit-result.cc | 87 code = (void *)GetProcAddress(m_dso_handle, funcname); in get_code() 124 global = (void *)GetProcAddress(m_dso_handle, name); in get_global()
|
/netbsd-src/external/gpl3/gcc/dist/libgcc/config/i386/ |
H A D | cygming-crtbegin.c | 131 GetProcAddress (h, "__register_frame_info"); in __gcc_register_frame() 133 GetProcAddress (h, "__deregister_frame_info"); in __gcc_register_frame()
|
/netbsd-src/external/gpl3/gcc.old/dist/libgcc/config/i386/ |
H A D | cygming-crtbegin.c | 131 GetProcAddress (h, "__register_frame_info"); in __gcc_register_frame() 133 GetProcAddress (h, "__deregister_frame_info"); in __gcc_register_frame()
|
/netbsd-src/external/gpl3/gcc/dist/libiberty/ |
H A D | physmem.c | 161 if ((pfnex = (PFN_MS_EX) GetProcAddress (h, "GlobalMemoryStatusEx"))) in physmem_total() 262 if ((pfnex = (PFN_MS_EX) GetProcAddress (h, "GlobalMemoryStatusEx"))) in physmem_available()
|
/netbsd-src/external/gpl3/binutils/dist/libiberty/ |
H A D | physmem.c | 161 if ((pfnex = (PFN_MS_EX) GetProcAddress (h, "GlobalMemoryStatusEx"))) in physmem_total() 262 if ((pfnex = (PFN_MS_EX) GetProcAddress (h, "GlobalMemoryStatusEx"))) in physmem_available()
|
/netbsd-src/external/gpl3/binutils.old/dist/libiberty/ |
H A D | physmem.c | 161 if ((pfnex = (PFN_MS_EX) GetProcAddress (h, "GlobalMemoryStatusEx"))) in physmem_total() 262 if ((pfnex = (PFN_MS_EX) GetProcAddress (h, "GlobalMemoryStatusEx"))) in physmem_available()
|
/netbsd-src/external/gpl3/gcc.old/dist/libiberty/ |
H A D | physmem.c | 161 if ((pfnex = (PFN_MS_EX) GetProcAddress (h, "GlobalMemoryStatusEx"))) in physmem_total() 262 if ((pfnex = (PFN_MS_EX) GetProcAddress (h, "GlobalMemoryStatusEx"))) in physmem_available()
|
/netbsd-src/external/bsd/libevent/dist/ |
H A D | evutil_time.c | 107 GetProcAddress(h, "GetSystemTimePreciseAsFileTime"); in evutil_gettimeofday() 528 base->GetTickCount64_fn = (ev_GetTickCount_func)GetProcAddress(h, "GetTickCount64"); in evutil_configure_monotonic_time_() 529 base->GetTickCount_fn = (ev_GetTickCount_func)GetProcAddress(h, "GetTickCount"); in evutil_configure_monotonic_time_()
|
/netbsd-src/external/bsd/libfido2/dist/src/ |
H A D | winhello.c | 94 (webauthn_get_api_version_t *)GetProcAddress(webauthn_handle, in webauthn_load() 106 (webauthn_strerr_t *)GetProcAddress(webauthn_handle, in webauthn_load() 112 (webauthn_get_assert_t *)GetProcAddress(webauthn_handle, in webauthn_load() 119 (webauthn_make_cred_t *)GetProcAddress(webauthn_handle, in webauthn_load() 126 (webauthn_free_assert_t *)GetProcAddress(webauthn_handle, in webauthn_load() 132 (webauthn_free_attest_t *)GetProcAddress(webauthn_handle, in webauthn_load()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/Windows/ |
H A D | Signals.inc | 166 ::GetProcAddress(hLib, "MiniDumpWriteDump"); 168 ::GetProcAddress(hLib, "StackWalk64"); 170 ::GetProcAddress(hLib, "SymGetModuleBase64"); 172 ::GetProcAddress(hLib, "SymGetSymFromAddr64"); 174 ::GetProcAddress(hLib, "SymGetLineFromAddr64"); 176 ::GetProcAddress(hLib, "SymGetModuleInfo64"); 178 ::GetProcAddress(hLib, "SymFunctionTableAccess64"); 179 fSymSetOptions = (fpSymSetOptions)::GetProcAddress(hLib, "SymSetOptions"); 180 fSymInitialize = (fpSymInitialize)::GetProcAddress(hLib, "SymInitialize"); 182 ::GetProcAddress(hLib, "EnumerateLoadedModules64");
|
H A D | DynamicLibrary.inc | 92 return (void *)uintptr_t(GetProcAddress((HMODULE)Handle, Symbol)); 132 if (FARPROC Ptr = GetProcAddress(HMODULE(Handles.front()), Symbol)) 143 if (FARPROC Ptr = GetProcAddress(HMODULE(*I), Symbol))
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/ |
H A D | jitprofiling.c | 371 FUNC_NotifyEvent = (TPNotify)GetProcAddress(m_libHandle, "NotifyEvent"); in loadiJIT_Funcs() 382 FUNC_Initialize = (TPInitialize)GetProcAddress(m_libHandle, "Initialize"); in loadiJIT_Funcs()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/rt/ |
H A D | dmain2.d | 115 gcSetFn gcSet = cast(gcSetFn) GetProcAddress(mod, "gc_setProxy"); in version() 133 gcClrFn gcClr = cast(gcClrFn) GetProcAddress(ptr, "gc_clrProxy"); in version() 603 GetProcAddress(user32, "MessageBoxW"); in _d_print_throwable()
|