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

/vbox/src/VBox/Runtime/tools/
H A DRTLdrFlt.cpp300 RTDBGSEGMENT SegInfo; local
301 rc = RTDbgModSegmentByIndex(hDbgMod, aMappings[iMapping].iSeg, &SegInfo);
306 aMappings[iMapping].Address + SegInfo.cb,
307 SegInfo.iSeg, SegInfo.szName);
/vbox/src/VBox/Debugger/
H A DDBGPlugInDarwin.cpp615 RTDBGSEGMENT SegInfo; local
616 int rc3 = RTDbgModSegmentByIndex(hMod, iDbgSeg, &SegInfo);
617 if (RT_SUCCESS(rc3) && !strcmp(SegInfo.szName, aSegs[iSeg].szName))
H A DDBGCEmulateCodeView.cpp4078 RTDBGSEGMENT SegInfo; local
4079 rc = RTDbgModSegmentByIndex(hMod, iSeg, &SegInfo);
4082 if (SegInfo.uRva != RTUINTPTR_MAX)
4084 (RTGCUINTPTR)(aMappings[0].Address + SegInfo.uRva),
4085 (RTGCUINTPTR)SegInfo.cb, iSeg, SegInfo.szName);
4089 (RTGCUINTPTR)SegInfo.cb, iSeg, SegInfo.szName);
4104 RTDBGSEGMENT SegInfo; local
4105 rc = RTDbgModSegmentByIndex(hMod, aMappings[iMap].iSeg, &SegInfo);
[all...]
/vbox/src/VBox/Runtime/common/ldr/
H A DldrPE.cpp1564 RTLDRSEG SegInfo; local
1569 SegInfo.pszName = "NtHdrs";
1570 SegInfo.cchName = 6;
1571 SegInfo.SelFlat = 0;
1572 SegInfo.Sel16bit = 0;
1573 SegInfo.fFlags = 0;
1574 SegInfo.fProt = RTMEM_PROT_READ;
1575 SegInfo.Alignment = 1;
1576 SegInfo.LinkAddress = pModPe->uImageBase;
1577 SegInfo
[all...]

Completed in 52 milliseconds