VirtualBox

Ignore:
Timestamp:
Jul 26, 2016 2:43:03 PM (8 years ago)
Author:
vboxsync
Message:

IPRT: Mark unused parameters.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/dbg/dbgmodcodeview.cpp

    r62477 r62564  
    582582                               uint32_t cchName, uint32_t fFlags, uint32_t cbSym)
    583583{
     584    RT_NOREF_PV(fFlags);
    584585    const char *pszName = rtDbgModCvAddSanitizedStringToCache(pchName, cchName);
    585586    int rc;
     
    667668    RTCPTRUNION uCursor;
    668669    uCursor.pv = pvSymTab;
     670
     671    RT_NOREF_PV(fFlags);
    669672
    670673    while (cbSymTab > 0 && RT_SUCCESS(rc))
     
    827830static int rtDbgModCvSsProcessV8SrcStrings(PRTDBGMODCV pThis, void const *pvSrcStrings, size_t cbSrcStrings, uint32_t fFlags)
    828831{
     832    RT_NOREF_PV(fFlags);
     833
    829834    if (pThis->cbSrcStrings)
    830835        Log(("\n!!More than one source file string table for this module!!\n\n"));
     
    872877static int rtDbgModCvSsProcessV8SrcInfo(PRTDBGMODCV pThis, void const *pvSrcInfo, size_t cbSrcInfo, uint32_t fFlags)
    873878{
     879    RT_NOREF_PV(fFlags);
     880
    874881    if (pThis->cbSrcInfo)
    875882        Log(("\n!!More than one source file info table for this module!!\n\n"));
     
    903910static int rtDbgModCvSsProcessV8SectLines(PRTDBGMODCV pThis, void const *pvSectLines, size_t cbSectLines, uint32_t fFlags)
    904911{
     912    RT_NOREF_PV(fFlags);
     913
    905914    /*
    906915     * Starts with header.
     
    10981107{
    10991108    PCRTCVGLOBALSYMTABHDR pHdr = (PCRTCVGLOBALSYMTABHDR)pvSubSect;
     1109    RT_NOREF_PV(pDirEnt);
    11001110
    11011111    /*
     
    11241134rtDbgModCvSs_Module(PRTDBGMODCV pThis, void const *pvSubSect, size_t cbSubSect, PCRTCVDIRENT32 pDirEnt)
    11251135{
     1136    RT_NOREF_PV(pDirEnt);
     1137
    11261138    RTCPTRUNION uCursor;
    11271139    uCursor.pv = pvSubSect;
     
    11621174rtDbgModCvSs_Symbols_PublicSym_AlignSym(PRTDBGMODCV pThis, void const *pvSubSect, size_t cbSubSect, PCRTCVDIRENT32 pDirEnt)
    11631175{
     1176    RT_NOREF_PV(pDirEnt);
    11641177    RTDBGMODCV_CHECK_NOMSG_RET_BF(pThis->uCurStyle == RT_MAKE_U16('C', 'V'));
    11651178    RTDBGMODCV_CHECK_NOMSG_RET_BF(cbSubSect >= 8);
     
    11801193rtDbgModCvSs_SrcModule(PRTDBGMODCV pThis, void const *pvSubSect, size_t cbSubSect, PCRTCVDIRENT32 pDirEnt)
    11811194{
     1195    RT_NOREF_PV(pDirEnt);
    11821196    Log(("rtDbgModCvSs_SrcModule: uCurStyle=%#x\n%.*Rhxd\n", pThis->uCurStyle, cbSubSect, pvSubSect));
    11831197
     
    16601674    if (pEntry1->uSubSectType > pEntry2->uSubSectType)
    16611675        return 1;
     1676
     1677    RT_NOREF_PV(pvUser);
    16621678    return 0;
    16631679}
     
    21102126                                         PCIMAGE_LINENUMBER paLines, uint32_t cLines)
    21112127{
     2128    RT_NOREF_PV(iSection);
    21122129    Log4(("Adding %u line numbers in section #%u  for %s\n", cLines, iSection, pszFile));
    21132130    PCIMAGE_LINENUMBER pCur = paLines;
     
    24392456{
    24402457    PRTDBGMODCV pThis = (PRTDBGMODCV)pMod->pvDbgPriv;
    2441     Assert(!pszSymbol[cchSymbol]);
     2458    Assert(!pszSymbol[cchSymbol]); RT_NOREF_PV(cchSymbol);
    24422459    return RTDbgModSymbolByName(pThis->hCnt, pszSymbol/*, cchSymbol*/, pSymInfo);
    24432460}
     
    25722589static int rtDbgModCvAddSegmentsFromDbg(PRTDBGMODCV pThis, PCIMAGE_SEPARATE_DEBUG_HEADER pDbgHdr, const char *pszFilename)
    25732590{
     2591    RT_NOREF_PV(pszFilename);
     2592
    25742593    /*
    25752594     * Validate the header fields a little.
     
    27412760                               uint32_t off, uint32_t cb, const char *pszFilename)
    27422761{
     2762    RT_NOREF_PV(pszFilename);
     2763
    27432764    /*
    27442765     * Check that there is sufficient data for a header, then read it.
     
    28342855{
    28352856    int rc = VERR_DBG_NO_MATCHING_INTERPRETER;
     2857    RT_NOREF_PV(enmArch); RT_NOREF_PV(pszFilename);
    28362858
    28372859    /* Is a codeview format we (wish to) support? */
     
    28782900    PRTDBGMODINT pDbgMod = (PRTDBGMODINT)pvUser;
    28792901    Assert(!pDbgMod->pvDbgPriv);
     2902    RT_NOREF_PV(hLdrMod);
    28802903
    28812904    /* Skip external files, RTDbgMod will deal with those
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette