/external/mesa3d/src/util/ |
D | u_debug_symbol.c | 65 static HMODULE hModule = NULL; in getDbgHelpProcAddress() local 67 if (!hModule) { in getDbgHelpProcAddress() 81 if (!hModule) { in getDbgHelpProcAddress() 82 hModule = LoadLibraryA("mgwhelp.dll"); in getDbgHelpProcAddress() 83 if (!hModule) { in getDbgHelpProcAddress() 93 if (!hModule) { in getDbgHelpProcAddress() 94 hModule = LoadLibraryA("dbghelp.dll"); in getDbgHelpProcAddress() 97 if (!hModule) { in getDbgHelpProcAddress() 103 return GetProcAddress(hModule, lpProcName); in getDbgHelpProcAddress() 183 HMODULE hModule = NULL; in debug_symbol_name_dbghelp() local [all …]
|
D | u_debug_stack.c | 221 static HMODULE hModule = NULL; in debug_backtrace_capture() local 222 if (!hModule) { in debug_backtrace_capture() 223 hModule = LoadLibraryA("kernel32"); in debug_backtrace_capture() 224 assert(hModule); in debug_backtrace_capture() 226 if (hModule) { in debug_backtrace_capture() 228 (PFNCAPTURESTACKBACKTRACE)GetProcAddress(hModule, in debug_backtrace_capture()
|
/external/lzma/CPP/Windows/ |
D | SecurityUtils.h | 70 HMODULE hModule; member 77 hModule = GetModuleHandle(TEXT("Advapi32.dll")); in CPolicy() 86 if (hModule == NULL) in Open() 88 LsaOpenPolicyP lsaOpenPolicy = (LsaOpenPolicyP)GetProcAddress(hModule, "LsaOpenPolicy"); in Open() 109 if (hModule == NULL) in Close() 111 LsaCloseP lsaClose = (LsaCloseP)GetProcAddress(hModule, "LsaClose"); in Close() 141 if (hModule == NULL) in AddAccountRights() 143 …LsaAddAccountRightsP lsaAddAccountRights = (LsaAddAccountRightsP)GetProcAddress(hModule, "LsaAddAc… in AddAccountRights()
|
D | MemoryLock.cpp | 22 #define GET_PROC_ADDR(fff, name) Func_ ## fff my_ ## fff = (Func_ ## fff)GetProcAddress(hModule, … 31 HMODULE hModule = ::LoadLibrary(TEXT("Advapi32.dll")); in EnablePrivilege() local 32 if (hModule == NULL) in EnablePrivilege() 63 ::FreeLibrary(hModule); in EnablePrivilege()
|
D | DLL.cpp | 62 HMODULE hModule = g_hInstance; in MyGetModuleFileName() local 69 DWORD size = ::GetModuleFileName(hModule, s, MAX_PATH + 1); in MyGetModuleFileName() 81 DWORD size = ::GetModuleFileNameW(hModule, s, MAX_PATH + 1); in MyGetModuleFileName()
|
D | SecurityUtils.cpp | 70 HMODULE hModule = GetModuleHandle(TEXT("Advapi32.dll")); in GetSid() local 71 if (hModule == NULL) in GetSid() 73 …LookupAccountNameWP lookupAccountNameW = (LookupAccountNameWP)GetProcAddress(hModule, "LookupAccou… in GetSid()
|
/external/python/cpython2/Modules/expat/ |
D | loadlibrary.c | 81 HMODULE hModule = NULL; in _Expat_LoadLibrary() local 99 hModule = pLoadLibraryEx ? in _Expat_LoadLibrary() 108 hModule = pLoadLibraryEx(filename, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32); in _Expat_LoadLibrary() 125 hModule = pLoadLibraryEx ? in _Expat_LoadLibrary() 134 return hModule; in _Expat_LoadLibrary()
|
/external/skia/third_party/icu/ |
D | SkLoadICU.cpp | 72 HMODULE hModule = NULL; in library_directory() local 74 reinterpret_cast<LPCSTR>(&library_directory), &hModule); in library_directory() 76 GetModuleFileNameA(hModule, path, MAX_PATH); in library_directory() 82 HMODULE hModule = GetModuleHandleA(NULL); in executable_directory() local 84 GetModuleFileNameA(hModule, path, MAX_PATH); in executable_directory()
|
/external/curl/lib/ |
D | system_win32.c | 175 HMODULE hModule = NULL; in Curl_load_library() local 195 hModule = pLoadLibraryEx ? in Curl_load_library() 204 hModule = pLoadLibraryEx(filename, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32); in Curl_load_library() 221 hModule = pLoadLibraryEx ? in Curl_load_library() 229 return hModule; in Curl_load_library()
|
/external/tensorflow/tensorflow/core/platform/windows/ |
D | load_library.cc | 42 HMODULE hModule = in LoadDynamicLibrary() local 44 if (!hModule) { in LoadDynamicLibrary() 47 *handle = hModule; in LoadDynamicLibrary()
|
/external/python/cpython2/Python/ |
D | dynload_win.c | 67 static char *GetPythonImport (HINSTANCE hModule) argument 75 if (hModule == NULL) { 82 dllbase = (unsigned char *)hModule;
|
/external/python/cpython3/Python/ |
D | dynload_win.c | 56 static char *GetPythonImport (HINSTANCE hModule) argument 64 if (hModule == NULL) { 71 dllbase = (unsigned char *)hModule;
|
/external/python/cpython3/Tools/msi/bundle/bootstrap/ |
D | pch.h | 51 __in HMODULE hModule,
|
D | PythonBootstrapperApplication.cpp | 3055 __in HMODULE hModule, in PythonBootstrapperApplication() argument 3061 _hModule = hModule; in PythonBootstrapperApplication() 3218 __in HMODULE hModule, in CreateBootstrapperApplication() argument 3234 …pApplication = new PythonBootstrapperApplication(hModule, fPrereq, hrHostInitialization, pEngine, … in CreateBootstrapperApplication()
|
/external/python/cpython3/PC/ |
D | pyshellext.cpp | 19 static HINSTANCE hModule; variable 510 if (!hModule) { in DllRegisterServer() 514 modname_len = GetModuleFileName(hModule, modname, MAX_PATH); in DllRegisterServer() 596 hModule = hinst; in DllMain()
|
/external/python/cpython2/Tools/msi/ |
D | msisupport.c | 87 BOOL APIENTRY DllMain(HANDLE hModule, in DllMain() argument
|
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | UnmanagedLibrary.cs | 178 internal static extern IntPtr GetProcAddress(IntPtr hModule, string procName); in GetProcAddress() argument
|
/external/angle/util/windows/third_party/StackWalker/src/ |
D | StackWalker.cpp | 550 HMODULE hModule; // The hModule of this module in th32ProcessID's context member 634 typedef DWORD(__stdcall * tGMFNE)(HANDLE hProcess, HMODULE hModule, LPSTR lpFilename, in GetModuleListPSAPI() 637 typedef DWORD(__stdcall * tGMBN)(HANDLE hProcess, HMODULE hModule, LPSTR lpFilename, in GetModuleListPSAPI() 640 typedef BOOL(__stdcall * tGMI)(HANDLE hProcess, HMODULE hModule, LPMODULEINFO pmi, DWORD nSize); in GetModuleListPSAPI()
|
/external/tensorflow/tensorflow/core/platform/ |
D | env.cc | 343 HMODULE hModule = GetModuleHandleW(NULL); in GetExecutablePath() local 345 GetModuleFileNameW(hModule, wc_file_path, MAX_PATH); in GetExecutablePath()
|
/external/capstone/bindings/vb6/ |
D | mMisc.bas | 20 Public Declare Function GetProcAddress Lib "kernel32" (ByVal hModule As Long, ByVal lpProcName As S…
|
/external/pdfium/third_party/libopenjpeg20/ |
D | openjpeg.c | 137 DllMain(HINSTANCE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) in DllMain() argument 141 OPJ_ARG_NOT_USED(hModule); in DllMain()
|
/external/tensorflow/tensorflow/stream_executor/cuda/ |
D | cuda_gpu_executor.cc | 201 HMODULE hModule = GetModuleHandle(NULL); in GetBinaryDir() local 202 GetModuleFileName(hModule, exe_path, MAX_PATH); in GetBinaryDir()
|
/external/libpcap/ |
D | pcap.c | 4106 HMODULE hModule = NULL; local 4132 hModule = LoadLibraryA(fullFileName); 4138 return hModule;
|
/external/python/cffi/doc/source/ |
D | cdef.rst | 265 _In_opt_ HMODULE hModule,
|
/external/angle/third_party/vulkan-deps/vulkan-headers/src/include/vulkan/ |
D | vulkan.hpp | 81 extern "C" __declspec( dllimport ) FARPROC __stdcall GetProcAddress( HINSTANCE hModule, const char …
|