Searched refs:pSegInfo (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmoddeferred.cpp323 static DECLCALLBACK(int) rtDbgModDeferredDbg_SegmentByIndex(PRTDBGMODINT pMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo)
327 rc = pMod->pDbgVt->pfnSegmentByIndex(pMod, iSeg, pSegInfo);
331 pSegInfo->Address = 0;
332 pSegInfo->uRva = 0;
333 pSegInfo->cb = pThis->cbImage;
334 pSegInfo->fFlags = 0;
335 pSegInfo->iSeg = 0;
336 memcpy(pSegInfo->szName, RT_STR_TUPLE("LATER"));
H A Ddbgmodcontainer.cpp466 static DECLCALLBACK(int) rtDbgModContainer_SegmentByIndex(PRTDBGMODINT pMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo) argument
471 pSegInfo->Address = RTUINTPTR_MAX;
472 pSegInfo->uRva = pThis->paSegs[iSeg].off;
473 pSegInfo->cb = pThis->paSegs[iSeg].cb;
474 pSegInfo->fFlags = pThis->paSegs[iSeg].fFlags;
475 pSegInfo->iSeg = iSeg;
476 strcpy(pSegInfo->szName, pThis->paSegs[iSeg].pszName);
H A Ddbgmoddbghelp.cpp152 static DECLCALLBACK(int) rtDbgModDbgHelp_SegmentByIndex(PRTDBGMODINT pMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo) argument
155 return RTDbgModSegmentByIndex(hCnt, iSeg, pSegInfo);
H A Ddbgmodnm.cpp140 static DECLCALLBACK(int) rtDbgModNm_SegmentByIndex(PRTDBGMODINT pMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo) argument
143 return RTDbgModSegmentByIndex(pThis->hCnt, iSeg, pSegInfo);
H A Ddbgmod.cpp1716 RTDECL(int) RTDbgModSegmentByIndex(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo)
1723 int rc = pDbgMod->pDbgVt->pfnSegmentByIndex(pDbgMod, iSeg, pSegInfo);
H A Ddbgmodcodeview.cpp2116 static DECLCALLBACK(int) rtDbgModCv_SegmentByIndex(PRTDBGMODINT pMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo) argument
2119 return RTDbgModSegmentByIndex(pThis->hCnt, iSeg, pSegInfo);
H A Ddbgmoddwarf.cpp4589 static DECLCALLBACK(int) rtDbgModDwarf_SegmentByIndex(PRTDBGMODINT pMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo) argument
4592 return RTDbgModSegmentByIndex(pThis->hCnt, iSeg, pSegInfo);
/vbox/src/VBox/Runtime/include/internal/
H A Ddbgmod.h358 * @param pSegInfo Where to store the segment information.
360 DECLCALLBACKMEMBER(int, pfnSegmentByIndex)(PRTDBGMODINT pMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo);
/vbox/include/iprt/
H A Ddbg.h1180 * @param pSegInfo Where to return the segment info. The
1184 RTDECL(int) RTDbgModSegmentByIndex(RTDBGMOD hDbgMod, RTDBGSEGIDX iSeg, PRTDBGSEGMENT pSegInfo);

Completed in 88 milliseconds