Searched refs:module_entry (Results 1 – 1 of 1) sorted by relevance
/external/v8/src/base/platform/ |
D | platform-win32.cc | 1190 MODULEENTRY32W module_entry; in LoadSymbols() local 1191 module_entry.dwSize = sizeof(module_entry); // Set the size of the structure. in LoadSymbols() 1192 BOOL cont = _Module32FirstW(snapshot, &module_entry); in LoadSymbols() 1200 reinterpret_cast<PSTR>(module_entry.szExePath), // ImageName in LoadSymbols() 1201 reinterpret_cast<PSTR>(module_entry.szModule), // ModuleName in LoadSymbols() 1202 reinterpret_cast<DWORD64>(module_entry.modBaseAddr), // BaseOfDll in LoadSymbols() 1203 module_entry.modBaseSize); // SizeOfDll in LoadSymbols() 1213 CP_UTF8, 0, module_entry.szExePath, -1, nullptr, 0, nullptr, nullptr); in LoadSymbols() 1215 WideCharToMultiByte(CP_UTF8, 0, module_entry.szExePath, -1, &lib_name[0], in LoadSymbols() 1218 lib_name, reinterpret_cast<uintptr_t>(module_entry.modBaseAddr), in LoadSymbols() [all …]
|