HomeSort by relevance Sort by last modified time
    Searched full:hmodule (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /external/lzma/CPP/Windows/
DLL.h 19 HMODULE _module;
24 operator HMODULE() const { return _module; }
25 HMODULE* operator&() { return &_module; }
28 void Attach(HMODULE m)
33 HMODULE Detach()
35 HMODULE m = _module;
SecurityUtils.h 70 HMODULE hModule;
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");
MemoryLock.cpp 20 #define GET_PROC_ADDR(fff, name) Func_ ## fff my_ ## fff = (Func_ ## fff)GetProcAddress(hModule, name)
29 HMODULE hModule = ::LoadLibrary(TEXT("Advapi32.dll"));
30 if (hModule == NULL)
61 ::FreeLibrary(hModule);
DLL.cpp 62 HMODULE hModule = g_hInstance;
69 DWORD size = ::GetModuleFileName(hModule, s, MAX_PATH + 1);
81 DWORD size = ::GetModuleFileNameW(hModule, s, MAX_PATH + 1);
SecurityUtils.cpp 67 HMODULE hModule = GetModuleHandle(TEXT("Advapi32.dll"));
68 if (hModule == NULL)
70 LookupAccountNameWP lookupAccountNameW = (LookupAccountNameWP)GetProcAddress(hModule, "LookupAccountNameW");
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_errcheck.py 4 ##class HMODULE(Structure):
8 ## return "<HMODULE %s>" % self.value
10 ##windll.kernel32.GetModuleHandleA.restype = HMODULE
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_errcheck.py 4 ##class HMODULE(Structure):
8 ## return "<HMODULE %s>" % self.value
10 ##windll.kernel32.GetModuleHandleA.restype = HMODULE
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_errcheck.py 4 ##class HMODULE(Structure):
8 ## return "<HMODULE %s>" % self.value
10 ##windll.kernel32.GetModuleHandleA.restype = HMODULE
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_errcheck.py 4 ##class HMODULE(Structure):
8 ## return "<HMODULE %s>" % self.value
10 ##windll.kernel32.GetModuleHandleA.restype = HMODULE
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
psapi.h 38 WINBOOL WINAPI EnumProcessModules(HANDLE hProcess,HMODULE *lphModule,DWORD cb,LPDWORD lpcbNeeded);
39 DWORD WINAPI GetModuleBaseNameA(HANDLE hProcess,HMODULE hModule,LPSTR lpBaseName,DWORD nSize);
40 DWORD WINAPI GetModuleBaseNameW(HANDLE hProcess,HMODULE hModule,LPWSTR lpBaseName,DWORD nSize);
41 DWORD WINAPI GetModuleFileNameExA(HANDLE hProcess,HMODULE hModule,LPSTR lpFilename,DWORD nSize);
42 DWORD WINAPI GetModuleFileNameExW(HANDLE hProcess,HMODULE hModule,LPWSTR lpFilename,DWORD nSize);
50 WINBOOL WINAPI GetModuleInformation(HANDLE hProcess,HMODULE hModule,LPMODULEINFO lpmodinfo,DWORD cb)
    [all...]
muiload.h 17 WINBOOL WINAPI FreeMUILibrary(HMODULE hResModule);
wownt16.h 15 DWORD WINAPI GetProcAddress32W(DWORD hModule,LPCSTR lpszProc);
d3d10misc.h 36 HMODULE swrast, UINT flags, UINT sdk_version, ID3D10Device **device);
39 HMODULE swrast, UINT flags, UINT sdk_version, DXGI_SWAP_CHAIN_DESC *swapchain_desc,
d3dx9tex.h 100 HRESULT WINAPI D3DXGetImageInfoFromResourceA(HMODULE module, LPCSTR resource, D3DXIMAGE_INFO *info);
101 HRESULT WINAPI D3DXGetImageInfoFromResourceW(HMODULE module, LPCWSTR resource, D3DXIMAGE_INFO *info);
117 const PALETTEENTRY *destpalette, const RECT *destrect, HMODULE srcmodule, const char *resource,
120 const PALETTEENTRY *destpalette, const RECT *destrect, HMODULE srcmodule, const WCHAR *resource,
158 const PALETTEENTRY *destpalette, const D3DBOX *destbox, HMODULE srcmodule, const char *resource,
161 const PALETTEENTRY *destpalette, const D3DBOX *destbox, HMODULE srcmodule, const WCHAR *resource,
219 HMODULE srcmodule, const char *resource, struct IDirect3DTexture9 **texture);
221 HMODULE srcmodule, const WCHAR *resource, struct IDirect3DTexture9 **texture);
225 HMODULE srcmodule, const char *resource, struct IDirect3DCubeTexture9 **cube);
227 HMODULE srcmodule, const WCHAR *resource, struct IDirect3DCubeTexture9 **cube)
    [all...]
tlhelp32.h 129 HMODULE hModule;
147 HMODULE hModule;
  /external/v8/tools/gyp/test/win/importlib/
dll_no_exports.cc 7 BOOL APIENTRY DllMain(HMODULE module, DWORD reason, LPVOID reserved) {
  /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/parameter-framework/upstream/utility/windows/
DynamicLibrary.cpp 42 static_assert(sizeof(void *) == sizeof(HMODULE), "Incompatible object size");
44 HMODULE module = LoadLibrary(_path.c_str());
56 HMODULE module = reinterpret_cast<HMODULE>(_handle);
63 HMODULE module = reinterpret_cast<HMODULE>(_handle);
  /external/skia/src/ports/
SkOSLibrary_win.cpp 19 return reinterpret_cast<void*>(::GetProcAddress((HMODULE)library, functionName));
  /external/llvm/lib/Support/Windows/
DynamicLibrary.inc 36 static DenseSet<HMODULE> *OpenedHandles;
39 HMODULE hLib = ::LoadLibraryW(L"Dbghelp.dll");
50 OpenedHandles->insert((HMODULE)ModuleBase);
61 OpenedHandles = new DenseSet<HMODULE>();
83 HMODULE a_handle = LoadLibraryW(filenameUnicode.data());
91 OpenedHandles = new DenseSet<HMODULE>();
139 for (DenseSet<HMODULE>::iterator I = OpenedHandles->begin(),
141 FARPROC ptr = GetProcAddress((HMODULE)*I, symbolName);
179 return (void *)(intptr_t)GetProcAddress((HMODULE)Data, symbolName);
  /external/compiler-rt/test/asan/TestCases/Windows/
report_globals_reload_dll.cc 30 HMODULE dll = LoadLibrary(dll_name);
43 BOOL WINAPI DllMain(HMODULE, DWORD reason, LPVOID) {
report_globals_vs_freelibrary.cc 25 HMODULE dll = LoadLibrary(dll_name);
39 BOOL WINAPI DllMain(HMODULE, DWORD reason, LPVOID) {
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3dapi/
d3d10misc.h 37 HMODULE swrast, UINT flags, UINT sdk_version, ID3D10Device **device);
40 HMODULE swrast, UINT flags, UINT sdk_version, DXGI_SWAP_CHAIN_DESC *swapchain_desc,
  /external/curl/lib/
system_win32.c 47 typedef HMODULE (APIENTRY *LOADLIBRARYEX_FN)(LPCTSTR, HANDLE, DWORD);
234 HMODULE Curl_load_library(LPCTSTR filename)
236 HMODULE hModule = NULL;
240 HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32"));
254 hModule = pLoadLibraryEx ?
263 hModule = pLoadLibraryEx(filename, NULL, LOAD_LIBRARY_SEARCH_SYSTEM32);
280 hModule = pLoadLibraryEx ?
289 return hModule;
  /external/mesa3d/src/gallium/state_trackers/d3d1x/dxgid3d10/
dxgid3d10.cpp 36 HMODULE software,
88 HMODULE software,
128 HMODULE software,
140 HMODULE software,

Completed in 381 milliseconds

1 2 3 4 5 6 7