/ndk/sources/host-tools/make-3.81/w32/subproc/ |
w32err.c | 46 HMODULE hModule = GetModuleHandle("wsock32");
47 if (hModule != NULL) {
49 hModule,
55 FreeLibrary(hModule);
|
/external/lzma/CPP/Windows/ |
MemoryLock.cpp | 20 static bool EnableLockMemoryPrivilege2(HMODULE hModule,
25 if (hModule == NULL)
27 OpenProcessTokenP openProcessToken = (OpenProcessTokenP)GetProcAddress(hModule, "OpenProcessToken");
28 LookupPrivilegeValueP lookupPrivilegeValue = (LookupPrivilegeValueP)GetProcAddress(hModule, "LookupPrivilegeValueA" );
29 AdjustTokenPrivilegesP adjustTokenPrivileges = (AdjustTokenPrivilegesP)GetProcAddress(hModule, "AdjustTokenPrivileges");
71 HMODULE hModule = LoadLibrary(TEXT("Advapi32.dll"));
72 if (hModule == NULL)
74 bool res = EnableLockMemoryPrivilege2(hModule, enable); [all...] |
DLL.cpp | 30 bool CLibrary::LoadOperations(HMODULE newModule)
74 bool MyGetModuleFileName(HMODULE hModule, CSysString &result)
78 DWORD size = ::GetModuleFileName(hModule, fullPath, MAX_PATH + 1);
88 bool MyGetModuleFileName(HMODULE hModule, UString &result)
94 DWORD size = ::GetModuleFileNameW(hModule, fullPath, MAX_PATH + 1);
103 if (!MyGetModuleFileName(hModule, resultSys))
|
DLL.h | 19 bool LoadOperations(HMODULE newModule);
21 HMODULE _module;
26 operator HMODULE() const { return _module; }
27 HMODULE* operator&() { return &_module; }
30 void Attach(HMODULE m)
35 HMODULE Detach()
37 HMODULE m = _module;
52 bool MyGetModuleFileName(HMODULE hModule, CSysString &result);
54 bool MyGetModuleFileName(HMODULE hModule, UString &result); [all...] |
/external/chromium/base/win/ |
pe_image.h | 78 explicit PEImage(HMODULE module) : module_(module) {} 80 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module)); 83 // Gets the HMODULE for this object. 84 HMODULE module() const; 86 // Sets this object's HMODULE. 87 void set_module(HMODULE module); 223 HMODULE module_; 230 explicit PEImageAsData(HMODULE hModule) : PEImage(hModule) {} [all...] |
/external/chromium_org/base/win/ |
pe_image.h | 82 explicit PEImage(HMODULE module) : module_(module) {} 84 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module)); 87 // Gets the HMODULE for this object. 88 HMODULE module() const; 90 // Sets this object's HMODULE. 91 void set_module(HMODULE module); 227 HMODULE module_; 234 explicit PEImageAsData(HMODULE hModule) : PEImage(hModule) {} [all...] |
/external/stlport/src/ |
dll_main.cpp | 219 BOOL APIENTRY DllMain( HANDLE hModule, 224 DisableThreadLibraryCalls((HINSTANCE)hModule);
|
/ndk/sources/cxx-stl/stlport/src/ |
dll_main.cpp | 219 BOOL APIENTRY DllMain( HANDLE hModule, 224 DisableThreadLibraryCalls((HINSTANCE)hModule);
|
/external/chromium_org/chrome_frame/crash_reporting/ |
nt_loader_unittest.cc | 142 nt_loader::GetLoaderEntry(module.hModule); 144 EXPECT_EQ(module.hModule, reinterpret_cast<HMODULE>(entry->DllBase)); 160 EXPECT_TRUE(module.hModule == ::GetModuleHandle(NULL)); 258 HMODULE crash_dll = ::GetModuleHandle(kCrashDllName); 275 HMODULE module = ::LoadLibrary(kCrashDllName); 298 HMODULE crash_dll = ::GetModuleHandle(kCrashDllName); 311 HMODULE module = ::LoadLibrary(kCrashDllName);
|
/external/qemu/distrib/sdl-1.2.15/src/ |
SDL.c | 335 BOOL APIENTRY _DllMainCRTStartup( HANDLE hModule,
|
/external/chromium_org/remoting/host/plugin/ |
host_plugin.cc | 498 BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpReserved) { 501 DisableThreadLibraryCalls(hModule);
|
/external/chromium_org/third_party/WebKit/Source/platform/fonts/win/ |
UniscribeHelper.cpp | 70 HMODULE hModule = GetModuleHandle(L"usp10"); 71 if (hModule) { 72 gScriptItemizeOpenTypeFunc = reinterpret_cast<ScriptItemizeOpenTypeFunc>(GetProcAddress(hModule, "ScriptItemizeOpenType")); 73 gScriptShapeOpenTypeFunc = reinterpret_cast<ScriptShapeOpenTypeFunc>(GetProcAddress(hModule, "ScriptShapeOpenType")); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar | |
/prebuilts/tools/windows/swt/ |
swt.jar | |
/prebuilts/tools/windows-x86_64/swt/ |
swt.jar | |