Searched refs:paShs (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/Debugger/
H A DDBGPlugInWinNt.cpp397 * @param paShs Pointer to the section headers.
411 static bool dbgDiggerWinNtCheckSectHdrsAndImgSize(PCIMAGE_SECTION_HEADER paShs, uint32_t cShs, uint32_t cbImage, argument
418 if (!paShs[i].Name[0])
424 if (paShs[i].Characteristics & IMAGE_SCN_TYPE_NOLOAD)
429 if ( RT_ALIGN(paShs[i].Misc.VirtualSize, _64K) < RT_ALIGN(paShs[i].SizeOfRawData, _64K)
430 || paShs[i].Misc.VirtualSize >= _1G
431 || paShs[i].SizeOfRawData >= _1G)
434 i, paShs[i].Misc.VirtualSize, paShs[
500 PCIMAGE_SECTION_HEADER paShs = (PCIMAGE_SECTION_HEADER)(pbBuf + offShs); local
[all...]
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmodcodeview.cpp2234 PIMAGE_SECTION_HEADER paShs = (PIMAGE_SECTION_HEADER)RTMemAlloc(cbShs); local
2235 if (!paShs)
2237 int rc = RTFileReadAt(pThis->hFile, sizeof(*pDbgHdr), paShs, cbShs, NULL);
2248 i, paShs[i].VirtualAddress, paShs[i].Misc.VirtualSize, sizeof(paShs[i].Name), paShs[i].Name));
2250 if (paShs[i].Characteristics & IMAGE_SCN_TYPE_NOLOAD)
2253 if (paShs[i].VirtualAddress < uRvaPrev)
2256 pszFilename, paShs[
[all...]
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp1675 PCIMAGE_SECTION_HEADER paShs = pModPe->paSections; local
1677 if (!(paShs[i].Characteristics & IMAGE_SCN_TYPE_NOLOAD))
1679 uint32_t uAddr = paShs[i].VirtualAddress;

Completed in 65 milliseconds