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

/vbox/src/VBox/Runtime/r0drv/darwin/
H A Ddbgkrnlinfo-r0drv-darwin.cpp168 uint32_t cSections; member in struct:RTDBGKRNLINFOINT
606 if (pSym->n_sect > pThis->cSections)
622 || pSym->n_sect > pThis->cSections) )
663 pThis->cSections = 0;
812 if (pThis->cSections == MACHO_MAX_SECT)
814 pThis->apSections[pThis->cSections++] = &paSects[i];
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyProcess-win.cpp746 uint32_t const cSections = pNtHdrs->FileHeader.NumberOfSections; local
747 if (cSections > RT_ELEMENTS(pThis->aSecHdrs))
749 "%s: Too many section headers: %#x", pImage->pszName, cSections);
751 cSections * sizeof(IMAGE_SECTION_HEADER));
783 + sizeof(IMAGE_SECTION_HEADER) * cSections;
786 "%s: Headers are too small: %#x < %#x (cSections=%#x)",
787 pImage->pszName, cbHeaders, cbMinHdrs, cSections);
897 for (uint32_t i = 0; i < cSections; i++)
973 uint32_t cbMapAligned = i + 1 < cSections && !pImage->fApiSetSchemaOnlySection1
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp96 unsigned cSections; member in struct:RTLDRMODPE
325 while (j < pThis->cSections)
327 cbMapping = (j + 1 < pThis->cSections ? pThis->paSections[j + 1].VirtualAddress : pThis->cbImage)
529 for (unsigned cLeft = pModPe->cSections; cLeft > 0; cLeft--, pSH++)
1590 for (uint32_t i = 0; i < pModPe->cSections && rc == VINF_SUCCESS; i++, pSh++)
1630 if (i + 1 < pModPe->cSections && !(pSh[1].Characteristics & IMAGE_SCN_TYPE_NOLOAD))
1674 uint32_t i = pModPe->cSections;
1712 if (iSeg > pModPe->cSections)
2211 for (uint32_t i = 0; i < pModPe->cSections; i++)
2473 if ( iSh < pModPe->cSections
3225 rtldrPEValidateSectionHeaders(const IMAGE_SECTION_HEADER *paSections, unsigned cSections, const char *pszLogName, const IMAGE_OPTIONAL_HEADER64 *pOptHdr, RTFOFF cbRawImage, uint32_t fFlags, bool fNoCode) argument
[all...]
/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmodcodeview.cpp1812 uint32_t cSections = 1; local
1850 if ((int16_t)cSections <= Sym.SectionNumber && Sym.SectionNumber > 0)
1851 cSections = Sym.SectionNumber + 1;
1970 } while (iLine < cLines && iLineSect < cSections && RT_SUCCESS(rc));

Completed in 56 milliseconds