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

/vbox/src/VBox/Debugger/
H A DDBGPlugInCommonELFTmpl.cpp.h137 for (unsigned iSh = fFlags & DBG_DIGGER_ELF_FUNNY_SHDRS ? 1 : 0; iSh < pEhdr->e_shnum; iSh++)
140 if (paShdrs[iSh].sh_link >= pEhdr->e_shnum)
144 if (paShdrs[iSh].sh_type == SHT_SYMTAB)
148 pSymShdr = &paShdrs[iSh];
151 pStrShdr = &paShdrs[paShdrs[iSh].sh_link];
153 if (uLoadAddr > paShdrs[iSh].sh_addr)
154 uLoadAddr = paShdrs[iSh].sh_addr;
213 uint32_t iSh local
[all...]
/vbox/src/VBox/HostDrivers/Support/win/
H A DSUPHardenedVerifyProcess-win.cpp379 int32_t iSh, PSUPHNTVPSKIPAREA paSkipAreas, uint32_t cSkipAreas,
428 pImage->pszName, cbThis, pImage->uImageBase + uRva, uRva, iSh + 1,
429 iSh >= 0 ? (char *)pThis->aSecHdrs[iSh].Name : "headers", rcNt);
434 const char *pachSectNm = iSh >= 0 ? (char *)pThis->aSecHdrs[iSh].Name : "headers";
435 SUP_DPRINTF(("%s: Differences in section #%u (%s) between file and memory:\n", pImage->pszName, iSh + 1, pachSectNm));
464 pImage->pszName, cbThis, pvRestoreAddr, uRva, iSh + 1, pachSectNm, rcNt,
471 pImage->pszName, cDiffs, uRva + off, uRva + offLast, iSh + 1,
377 supHardNtVpFileMemCompareSection(PSUPHNTVPSTATE pThis, PSUPHNTVPIMAGE pImage, uint32_t uRva, uint32_t cb, const uint8_t *pbFile, int32_t iSh, PSUPHNTVPSKIPAREA paSkipAreas, uint32_t cSkipAreas, uint32_t fCorrectProtection) argument
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp2451 uint32_t iSh = UINT32_MAX; local
2472 iSh++;
2473 if ( iSh < pModPe->cSections
2474 && offPageInFile - pModPe->paSections[iSh].PointerToRawData < pModPe->paSections[iSh].SizeOfRawData)
2475 offSectEnd = pModPe->paSections[iSh].PointerToRawData + pModPe->paSections[iSh].SizeOfRawData;
2478 iSh = 0;
2479 while ( iSh < pModPe->cSections
2480 && offPageInFile - pModPe->paSections[iSh]
[all...]

Completed in 48 milliseconds