Home
last modified time | relevance | path

Searched refs:HMODULE (Results 1 – 25 of 134) sorted by relevance

123456

/external/parameter-framework/upstream/utility/windows/
DDynamicLibrary.cpp42 static_assert(sizeof(void *) == sizeof(HMODULE), "Incompatible object size"); in DynamicLibrary()
44 HMODULE module = LoadLibrary(_path.c_str()); in DynamicLibrary()
56 HMODULE module = reinterpret_cast<HMODULE>(_handle); in ~DynamicLibrary()
63 HMODULE module = reinterpret_cast<HMODULE>(_handle); in osGetSymbol()
/external/lzma/CPP/Windows/
DDLL.h23 HMODULE _module;
30 operator HMODULE() const { return _module; } in HMODULE() function
31 HMODULE* operator&() { return &_module; }
34 void Attach(HMODULE m) in Attach()
39 HMODULE Detach() in Detach()
41 HMODULE m = _module; in Detach()
/external/expat/lib/
Dloadlibrary.c39 HMODULE _Expat_LoadLibrary(LPCTSTR filename);
51 typedef HMODULE (APIENTRY *LOADLIBRARYEX_FN)(LPCTSTR, HANDLE, DWORD);
79 HMODULE _Expat_LoadLibrary(LPCTSTR filename) in _Expat_LoadLibrary()
81 HMODULE hModule = NULL; in _Expat_LoadLibrary()
85 HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32")); in _Expat_LoadLibrary()
/external/swiftshader/third_party/LLVM/lib/Support/Windows/
DDynamicLibrary.inc42 static DenseSet<HMODULE> *OpenedHandles;
66 OpenedHandles->insert((HMODULE)ModuleBase);
79 OpenedHandles = new DenseSet<HMODULE>();
87 HMODULE a_handle = LoadLibrary(filename);
95 OpenedHandles = new DenseSet<HMODULE>();
129 for (DenseSet<HMODULE>::iterator I = OpenedHandles->begin(),
131 FARPROC ptr = GetProcAddress((HMODULE)*I, symbolName);
159 return (void *)(intptr_t)GetProcAddress((HMODULE)Data, symbolName);
/external/llvm/lib/Support/Windows/
DDynamicLibrary.inc36 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/google-breakpad/src/client/windows/crash_generation/
Dminidump_generator.h114 HMODULE GetDbghelpModule();
121 HMODULE GetRpcrt4Module();
131 HMODULE dbghelp_module_;
137 HMODULE rpcrt4_module_;
Dminidump_generator.cc88 HMODULE verifier_module_;
520 HMODULE MinidumpGenerator::GetDbghelpModule() { in GetDbghelpModule()
532 HMODULE module = GetDbghelpModule(); in GetWriteDump()
542 HMODULE MinidumpGenerator::GetRpcrt4Module() { in GetRpcrt4Module()
554 HMODULE module = GetRpcrt4Module(); in GetCreateUuid()
/external/swiftshader/src/Common/
DSharedLibrary.hpp73 HMODULE module = NULL; in getLibraryHandle()
80 FreeLibrary((HMODULE)library); in freeLibrary()
85 return (void*)GetProcAddress((HMODULE)library, name); in getProcAddress()
/external/curl/lib/
Dsystem_win32.c47 typedef HMODULE (APIENTRY *LOADLIBRARYEX_FN)(LPCTSTR, HANDLE, DWORD);
269 HMODULE Curl_load_library(LPCTSTR filename) in Curl_load_library()
271 HMODULE hModule = NULL; in Curl_load_library()
275 HMODULE hKernel32 = GetModuleHandle(TEXT("kernel32")); in Curl_load_library()
/external/compiler-rt/test/asan/TestCases/Windows/
Dreport_globals_vs_freelibrary.cc25 HMODULE dll = LoadLibrary(dll_name); in main()
39 BOOL WINAPI DllMain(HMODULE, DWORD reason, LPVOID) {
Dreport_globals_reload_dll.cc30 HMODULE dll = LoadLibrary(dll_name); in main()
43 BOOL WINAPI DllMain(HMODULE, DWORD reason, LPVOID) {
/external/mdnsresponder/mDNSWindows/
Dloclibrary.h33 int PathForResourceW ( HMODULE module, const wchar_t *name, wchar_t *locFile, int locFileLen);
36 int PathForResourceA ( HMODULE module, const char *name, char *locFile, int locFileLen);
DPosixCompat.c29 HMODULE library; in if_nametoindex()
55 HMODULE library; in if_indextoname()
Dloclibrary.c105 int PathForResourceA ( HMODULE module, const char *name, char *locFile, int locFileLen) in PathForResourceA()
142 int PathForResourceW ( HMODULE module, const wchar_t *name, wchar_t *locFile, int locFileLen) in PathForResourceW()
/external/mesa3d/src/gallium/auxiliary/util/
Du_dl.c64 return (util_dl_proc)GetProcAddress((HMODULE)library, procname); in util_dl_get_proc_address()
77 FreeLibrary((HMODULE)library); in util_dl_close()
Du_debug_symbol.c65 static HMODULE hModule = NULL; in getDbgHelpProcAddress()
183 HMODULE hModule = NULL; in debug_symbol_name_dbghelp()
/external/tensorflow/tensorflow/core/platform/windows/
Denv.cc61 HMODULE module = GetModuleHandleW(L"kernel32.dll"); in WindowsEnv()
130 HMODULE hModule = LoadLibraryExW(ws_file_name.c_str(), NULL, in LoadLibrary()
143 found_symbol = GetProcAddress((HMODULE)handle, symbol_name); in GetSymbolFromLibrary()
/external/skqp/src/gpu/gl/win/
DGrGLMakeNativeInterface_win.cpp26 HMODULE get() const { return fModule; } in get()
29 HMODULE fModule;
/external/skia/src/gpu/gl/win/
DGrGLMakeNativeInterface_win.cpp26 HMODULE get() const { return fModule; } in get()
29 HMODULE fModule;
/external/python/cpython2/PC/os2emx/
Ddlfcn.c50 HMODULE handle;
73 HMODULE hm; in dlopen()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_win.cc466 HMODULE *hmodules = 0; in init()
467 uptr modules_buffer_size = sizeof(HMODULE) * 256; in init()
470 hmodules = (HMODULE *)MmapOrDie(modules_buffer_size, __FUNCTION__); in init()
483 size_t num_modules = bytes_required / sizeof(HMODULE); in init()
485 HMODULE handle = hmodules[i]; in init()
/external/skqp/src/ports/
DSkOSLibrary_win.cpp18 return reinterpret_cast<void*>(::GetProcAddress((HMODULE)library, functionName)); in GetProcedureAddress()
/external/skia/src/ports/
DSkOSLibrary_win.cpp18 return reinterpret_cast<void*>(::GetProcAddress((HMODULE)library, functionName)); in GetProcedureAddress()
/external/libusb/libusb/os/
Dwindows_common.h87 static HMODULE __dll_##name##_handle = NULL
119 HMODULE h = __dll_##dll##_handle; \
/external/mdnsresponder/mDNSWindows/DLLStub/
DDLLStub.h48 HMODULE m_library;

123456