Searched defs:hModule (Results 1 - 18 of 18) sorted by relevance

/external/lzma/CPP/Windows/
H A DMemoryLock.cpp22 #define GET_PROC_ADDR(fff, name) Func_ ## fff my_ ## fff = (Func_ ## fff)GetProcAddress(hModule, name)
31 HMODULE hModule = ::LoadLibrary(TEXT("Advapi32.dll")); local
32 if (hModule == NULL)
63 ::FreeLibrary(hModule);
H A DDLL.cpp62 HMODULE hModule = g_hInstance; local
69 DWORD size = ::GetModuleFileName(hModule, s, MAX_PATH + 1);
81 DWORD size = ::GetModuleFileNameW(hModule, s, MAX_PATH + 1);
H A DSecurityUtils.cpp70 HMODULE hModule = GetModuleHandle(TEXT("Advapi32.dll")); local
71 if (hModule == NULL)
73 LookupAccountNameWP lookupAccountNameW = (LookupAccountNameWP)GetProcAddress(hModule, "LookupAccountNameW");
H A DSecurityUtils.h70 HMODULE hModule; member in struct:NWindows::NSecurity::CPolicy
77 hModule = GetModuleHandle(TEXT("Advapi32.dll"));
86 if (hModule == NULL)
88 LsaOpenPolicyP lsaOpenPolicy = (LsaOpenPolicyP)GetProcAddress(hModule, "LsaOpenPolicy");
109 if (hModule == NULL)
111 LsaCloseP lsaClose = (LsaCloseP)GetProcAddress(hModule, "LsaClose");
141 if (hModule == NULL)
143 LsaAddAccountRightsP lsaAddAccountRights = (LsaAddAccountRightsP)GetProcAddress(hModule, "LsaAddAccountRights");
/external/expat/lib/
H A Dloadlibrary.c81 HMODULE hModule = NULL; local
99 hModule = pLoadLibraryEx ?
108 hModule = pLoadLibraryEx(filename, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32);
125 hModule = pLoadLibraryEx ?
134 return hModule;
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_debug_stack.c75 static HMODULE hModule = NULL; local
76 if (!hModule) {
77 hModule = LoadLibraryA("kernel32");
78 assert(hModule);
80 if (hModule) {
82 (PFNCAPTURESTACKBACKTRACE)GetProcAddress(hModule,
H A Du_debug_symbol.c65 static HMODULE hModule = NULL; local
67 if (!hModule) {
81 if (!hModule) {
82 hModule = LoadLibraryA("mgwhelp.dll");
83 if (!hModule) {
93 if (!hModule) {
94 hModule = LoadLibraryA("dbghelp.dll");
97 if (!hModule) {
103 return GetProcAddress(hModule, lpProcName);
183 HMODULE hModule local
[all...]
/external/python/cpython2/Tools/msi/
H A Dmsisupport.c87 BOOL APIENTRY DllMain(HANDLE hModule, argument
/external/curl/lib/
H A Dsystem_win32.c271 HMODULE hModule = NULL; local
289 hModule = pLoadLibraryEx ?
298 hModule = pLoadLibraryEx(filename, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32);
315 hModule = pLoadLibraryEx ?
324 return hModule;
/external/python/cpython2/Python/
H A Ddynload_win.c67 static char *GetPythonImport (HINSTANCE hModule) argument
75 if (hModule == NULL) {
82 dllbase = (unsigned char *)hModule;
/external/python/cpython3/Python/
H A Ddynload_win.c80 static char *GetPythonImport (HINSTANCE hModule) argument
88 if (hModule == NULL) {
95 dllbase = (unsigned char *)hModule;
/external/tensorflow/tensorflow/core/platform/windows/
H A Denv.cc130 HMODULE hModule = LoadLibraryExW(ws_file_name.c_str(), NULL, variable
132 if (!hModule) {
135 *handle = hModule;
/external/pdfium/third_party/libopenjpeg20/
H A Dopenjpeg.c137 DllMain(HINSTANCE hModule, DWORD ul_reason_for_call, LPVOID lpReserved) argument
141 OPJ_ARG_NOT_USED(hModule);
/external/python/cpython3/PC/
H A Dpyshellext.cpp19 static HINSTANCE hModule; variable
505 if (!hModule) {
509 modname_len = GetModuleFileName(hModule, modname, MAX_PATH);
591 hModule = hinst;
/external/tensorflow/tensorflow/core/platform/
H A Denv.cc312 HMODULE hModule = GetModuleHandleW(NULL); local
314 GetModuleFileNameW(hModule, wc_file_path, MAX_PATH);
/external/libpcap/
H A Dpcap-tc.c268 HMODULE hModule = NULL; local
296 hModule = LoadLibrary(fullFileName);
305 return hModule;
/external/tensorflow/tensorflow/stream_executor/cuda/
H A Dcuda_gpu_executor.cc191 HMODULE hModule = GetModuleHandle(NULL); local
192 GetModuleFileName(hModule, exe_path, MAX_PATH);
/external/python/cpython3/Tools/msi/bundle/bootstrap/
H A DPythonBootstrapperApplication.cpp3077 __in HMODULE hModule,
3083 _hModule = hModule;
3240 __in HMODULE hModule,
3256 pApplication = new PythonBootstrapperApplication(hModule, fPrereq, hrHostInitialization, pEngine, pCommand);
3076 PythonBootstrapperApplication( __in HMODULE hModule, __in BOOL fPrereq, __in HRESULT hrHostInitialization, __in IBootstrapperEngine* pEngine, __in const BOOTSTRAPPER_COMMAND* pCommand ) argument
3239 CreateBootstrapperApplication( __in HMODULE hModule, __in BOOL fPrereq, __in HRESULT hrHostInitialization, __in IBootstrapperEngine* pEngine, __in const BOOTSTRAPPER_COMMAND* pCommand, __out IBootstrapperApplication** ppApplication ) argument

Completed in 557 milliseconds