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

/vbox/src/VBox/Runtime/common/dbg/
H A Ddbgmodldr.cpp91 return rtLdrReadAt(pThis->hLdrMod, pvBuf, UINT32_MAX /** @todo iDbgInfo*/, off, cb);
106 static DECLCALLBACK(int) rtDbgModLdr_MapPart(PRTDBGMODINT pMod, uint32_t iDbgInfo, RTFOFF off, size_t cb, void const **ppvMap) argument
114 int rc = rtLdrReadAt(pThis->hLdrMod, pvMap, iDbgInfo, off, cb);
H A Ddbgmoddwarf.cpp451 uint32_t iDbgInfo; member in struct:RTDBGMODDWARF::__anon16559
1441 pThis->aSections[enmSect].iDbgInfo,
4734 pThis->aSections[enmSect].iDbgInfo = pDbgInfo->iDbgInfo;
/vbox/src/VBox/Runtime/common/ldr/
H A DldrEx.cpp710 * @param iDbgInfo The debug info ordinal number if the request
716 * @remarks Fixups will only be applied if @a iDbgInfo is specified.
718 DECLHIDDEN(int) rtLdrReadAt(RTLDRMOD hLdrMod, void *pvBuf, uint32_t iDbgInfo, RTFOFF off, size_t cb) argument
723 if (iDbgInfo != UINT32_MAX)
726 return pMod->pOps->pfnReadDbgInfo(pMod, iDbgInfo, off, cb, pvBuf);
H A DldrELFRelocatable.cpp.h1073 DbgInfo.iDbgInfo = iShdr - 1;
1297 static DECLCALLBACK(int) RTLDRELF_NAME(ReadDbgInfo)(PRTLDRMODINTERNAL pMod, uint32_t iDbgInfo, RTFOFF off, argument
1301 LogFlow(("%s: iDbgInfo=%#x off=%RTfoff cb=%#zu\n", __FUNCTION__, iDbgInfo, off, cb));
1306 AssertReturn(iDbgInfo < pThis->Ehdr.e_shnum && iDbgInfo + 1 < pThis->Ehdr.e_shnum, VERR_INVALID_PARAMETER);
1307 iDbgInfo++;
1308 AssertReturn(!(pThis->paShdrs[iDbgInfo].sh_flags & SHF_ALLOC), VERR_INVALID_PARAMETER);
1309 AssertReturn(pThis->paShdrs[iDbgInfo].sh_type == SHT_PROGBITS, VERR_INVALID_PARAMETER);
1310 AssertReturn(pThis->paShdrs[iDbgInfo]
[all...]
H A DldrkStuff.cpp597 static int rtkldrEnumDbgInfoWrapper(PKLDRMOD pMod, KU32 iDbgInfo, KLDRDBGINFOTYPE enmType, KI16 iMajorVer, KI16 iMinorVer, argument
606 DbgInfo.iDbgInfo = iDbgInfo;
833 static DECLCALLBACK(int) rtkldr_ReadDbgInfo(PRTLDRMODINTERNAL pMod, uint32_t iDbgInfo, RTFOFF off, size_t cb, void *pvBuf) argument
/vbox/include/iprt/
H A Dldr.h705 uint32_t iDbgInfo; member in struct:RTLDRDBGINFO

Completed in 58 milliseconds