Searched defs:pDbgHdr (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmodcodeview.cpp2210 * @param pDbgHdr The DBG file header.
2213 static int rtDbgModCvAddSegmentsFromDbg(PRTDBGMODCV pThis, PCIMAGE_SEPARATE_DEBUG_HEADER pDbgHdr, const char *pszFilename) argument
2218 if ( pDbgHdr->NumberOfSections < 1
2219 || pDbgHdr->NumberOfSections > 4096)
2221 Log(("RTDbgModCv: Bad NumberOfSections: %d\n", pDbgHdr->NumberOfSections));
2224 if (!RT_IS_POWER_OF_TWO(pDbgHdr->SectionAlignment))
2226 Log(("RTDbgModCv: Bad SectionAlignment: %#x\n", pDbgHdr->SectionAlignment));
2233 size_t cbShs = pDbgHdr->NumberOfSections * sizeof(IMAGE_SECTION_HEADER);
2237 int rc = RTFileReadAt(pThis->hFile, sizeof(*pDbgHdr), paShs, cbShs, NULL);
2245 for (uint32_t i = 0; i < pDbgHdr
[all...]

Completed in 300 milliseconds