Searched refs:hmodule (Results 1 – 7 of 7) sorted by relevance
/third_party/glib/glib/ |
D | gwin32.c | 270 g_win32_get_package_installation_directory_of_module (gpointer hmodule) in g_win32_get_package_installation_directory_of_module() argument 278 if (!GetModuleFileNameW (hmodule, wc_fn, MAX_PATH)) in g_win32_get_package_installation_directory_of_module() 329 HMODULE hmodule = NULL; in get_package_directory_from_module() local 348 hmodule = GetModuleHandleW (wc_module_name); in get_package_directory_from_module() 351 if (!hmodule) in get_package_directory_from_module() 358 fn = g_win32_get_package_installation_directory_of_module (hmodule); in get_package_directory_from_module() 534 HMODULE hmodule; in g_win32_check_windows_version() local 544 hmodule = LoadLibraryW (L"ntdll.dll"); in g_win32_check_windows_version() 545 g_return_val_if_fail (hmodule != NULL, FALSE); in g_win32_check_windows_version() 547 RtlGetVersion = (fRtlGetVersion *) GetProcAddress (hmodule, "RtlGetVersion"); in g_win32_check_windows_version() [all …]
|
D | gutils.c | 2312 HMODULE hmodule = NULL; in get_module_for_address() local 2319 address, &hmodule)) in get_module_for_address() 2323 hmodule = (HMODULE) mbi.AllocationBase; in get_module_for_address() 2326 return hmodule; in get_module_for_address() 2332 HMODULE hmodule; in get_module_share_dir() local 2336 hmodule = get_module_for_address (address); in get_module_share_dir() 2337 if (hmodule == NULL) in get_module_share_dir() 2340 filename = g_win32_get_package_installation_directory_of_module (hmodule); in get_module_share_dir() 2351 HMODULE hmodule; in g_win32_get_system_data_dirs_for_module_real() local 2357 hmodule = NULL; in g_win32_get_system_data_dirs_for_module_real() [all …]
|
D | gwin32.h | 97 gchar* g_win32_get_package_installation_directory_of_module (gpointer hmodule);
|
/third_party/gstreamer/gstplugins_bad/sys/wasapi2/ |
D | gstwasapi2util.c | 462 HMODULE hmodule = NULL; in gst_wasapi2_can_automatic_stream_routing() 467 hmodule = LoadLibraryW (L"ntdll.dll"); in gst_wasapi2_can_automatic_stream_routing() 468 if (hmodule) in gst_wasapi2_can_automatic_stream_routing() 470 (fRtlGetVersion *) GetProcAddress (hmodule, "RtlGetVersion"); in gst_wasapi2_can_automatic_stream_routing() 482 if (hmodule) in gst_wasapi2_can_automatic_stream_routing() 483 FreeLibrary (hmodule); in gst_wasapi2_can_automatic_stream_routing()
|
/third_party/boost/boost/interprocess/detail/ |
D | win32_api.hpp | 418 typedef boost::winapi::HMODULE_ hmodule; typedef 843 inline hmodule load_library(const char *name) in load_library() 846 inline bool free_library(hmodule module) in free_library() 849 inline farproc_t get_proc_address(hmodule module, const char *name) in get_proc_address() 855 inline hmodule get_module_handle(const char *name) in get_module_handle() 909 static hmodule ModuleAddresses[NumModule]; 912 static hmodule get_module_from_id(unsigned int id) in get_module_from_id() 915 hmodule addr = get_module_handle(ModuleNames[id]); in get_module_from_id() 920 static hmodule get_module(const unsigned int id) in get_module() 1008 hmodule function_address_holder<Dummy>::ModuleAddresses[function_address_holder<Dummy>::NumModule]; [all …]
|
/third_party/libxml2/ |
D | catalog.c | 3130 void* hmodule; in xmlInitializeCatalog() local 3131 hmodule = GetModuleHandleA("libxml2.dll"); in xmlInitializeCatalog() 3132 if (hmodule == NULL) in xmlInitializeCatalog() 3133 hmodule = GetModuleHandleA(NULL); in xmlInitializeCatalog() 3134 if (hmodule != NULL) { in xmlInitializeCatalog() 3136 unsigned long len = GetModuleFileNameA(hmodule, buf, 255); in xmlInitializeCatalog()
|
/third_party/gettext/gnulib-local/lib/libxml/ |
D | catalog.c | 3158 void* hmodule; in xmlInitializeCatalog() local 3159 hmodule = GetModuleHandleA("libxml2.dll"); in xmlInitializeCatalog() 3160 if (hmodule == NULL) in xmlInitializeCatalog() 3161 hmodule = GetModuleHandleA(NULL); in xmlInitializeCatalog() 3162 if (hmodule != NULL) { in xmlInitializeCatalog() 3164 unsigned long len = GetModuleFileNameA(hmodule, buf, 255); in xmlInitializeCatalog()
|