Home
last modified time | relevance | path

Searched refs:module_entry (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/base/platform/
Dplatform-win32.cc1128 MODULEENTRY32W module_entry; in LoadSymbols() local
1129 module_entry.dwSize = sizeof(module_entry); // Set the size of the structure. in LoadSymbols()
1130 BOOL cont = _Module32FirstW(snapshot, &module_entry); in LoadSymbols()
1138 reinterpret_cast<PSTR>(module_entry.szExePath), // ImageName in LoadSymbols()
1139 reinterpret_cast<PSTR>(module_entry.szModule), // ModuleName in LoadSymbols()
1140 reinterpret_cast<DWORD64>(module_entry.modBaseAddr), // BaseOfDll in LoadSymbols()
1141 module_entry.modBaseSize); // SizeOfDll in LoadSymbols()
1151 CP_UTF8, 0, module_entry.szExePath, -1, NULL, 0, NULL, NULL); in LoadSymbols()
1153 WideCharToMultiByte(CP_UTF8, 0, module_entry.szExePath, -1, &lib_name[0], in LoadSymbols()
1156 lib_name, reinterpret_cast<uintptr_t>(module_entry.modBaseAddr), in LoadSymbols()
[all …]