Searched refs:me32 (Results 1 – 2 of 2) sorted by relevance
/third_party/openssl/crypto/dso/ |
D | dso_win32.c | 508 MODULEENTRY32 me32; in win32_pathbyaddr() local 557 me32.dwSize = sizeof(me32); in win32_pathbyaddr() 559 if (!(*module_first) (hModuleSnap, &me32)) { in win32_pathbyaddr() 568 if ((size_t) addr >= (size_t) me32.modBaseAddr && in win32_pathbyaddr() 569 (size_t) addr < (size_t) (me32.modBaseAddr + me32.modBaseSize)) { in win32_pathbyaddr() 574 return WideCharToMultiByte(CP_ACP, 0, me32.szExePath, -1, in win32_pathbyaddr() 578 int i, len = (int)wcslen(me32.szExePath); in win32_pathbyaddr() 584 path[i] = (char)me32.szExePath[i]; in win32_pathbyaddr() 591 int len = (int)strlen(me32.szExePath); in win32_pathbyaddr() 596 memcpy(path, me32.szExePath, len); in win32_pathbyaddr() [all …]
|
/third_party/glib/gmodule/ |
D | gmodule-win32.c | 127 MODULEENTRY32 me32; in find_in_any_module_using_toolhelp() local 150 me32.dwSize = sizeof (me32); in find_in_any_module_using_toolhelp() 152 if (Module32First (snapshot, &me32)) in find_in_any_module_using_toolhelp() 155 if ((p = GetProcAddress (me32.hModule, symbol_name)) != NULL) in find_in_any_module_using_toolhelp() 157 } while (Module32Next (snapshot, &me32)); in find_in_any_module_using_toolhelp()
|