VirtualBox

Ignore:
Timestamp:
Jul 26, 2016 2:43:03 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
109133
Message:

IPRT: Mark unused parameters.

Location:
trunk/src/VBox/Runtime/common/zip
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/zip/pkzip.cpp

    r62477 r62564  
    9191    PMEMIOSTREAM pThis = (PMEMIOSTREAM)pvThis;
    9292    Assert(pSgBuf->cSegs == 1);
     93    RT_NOREF_PV(fBlocking);
    9394
    9495    if (off < 0)
     
    119120static DECLCALLBACK(int) memFssIos_Write(void *pvThis, RTFOFF off, PCRTSGBUF pSgBuf, bool fBlocking, size_t *pcbWritten)
    120121{
     122    RT_NOREF_PV(pvThis); RT_NOREF_PV(off); RT_NOREF_PV(pSgBuf); RT_NOREF_PV(fBlocking); RT_NOREF_PV(pcbWritten);
    121123    return VERR_NOT_IMPLEMENTED;
    122124}
     
    127129static DECLCALLBACK(int) memFssIos_Flush(void *pvThis)
    128130{
     131    RT_NOREF_PV(pvThis);
    129132    return VERR_NOT_IMPLEMENTED;
    130133}
     
    135138static DECLCALLBACK(int) memFssIos_PollOne(void *pvThis, uint32_t fEvents, RTMSINTERVAL cMillies, bool fIntr, uint32_t *pfRetEvents)
    136139{
     140    RT_NOREF_PV(pvThis); RT_NOREF_PV(fEvents); RT_NOREF_PV(cMillies); RT_NOREF_PV(fIntr); RT_NOREF_PV(pfRetEvents);
    137141    return VERR_NOT_IMPLEMENTED;
    138142}
  • trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp

    r62477 r62564  
    898898    PRTZIPPKZIPIOSTREAM pThis = (PRTZIPPKZIPIOSTREAM)pvThis;
    899899    Assert(pSgBuf->cSegs == 1);
     900    RT_NOREF_PV(fBlocking);
    900901
    901902    if (off < 0)
     
    981982}
    982983
    983 static DECLCALLBACK(int) rtZipPkzipFssIos_Write(void *pvThis, RTFOFF off, PCRTSGBUF pSgBuf, bool fBlocking, size_t *pcWritten)
    984 {
     984static DECLCALLBACK(int) rtZipPkzipFssIos_Write(void *pvThis, RTFOFF off, PCRTSGBUF pSgBuf, bool fBlocking, size_t *pcbWritten)
     985{
     986    RT_NOREF_PV(pvThis); RT_NOREF_PV(off); RT_NOREF_PV(pSgBuf); RT_NOREF_PV(fBlocking); RT_NOREF_PV(pcbWritten);
    985987    return VERR_NOT_IMPLEMENTED;
    986988}
     
    988990static DECLCALLBACK(int) rtZipPkzipFssIos_Flush(void *pvThis)
    989991{
     992    RT_NOREF_PV(pvThis);
    990993    return VERR_NOT_IMPLEMENTED;
    991994}
  • trunk/src/VBox/Runtime/common/zip/unzipcmd.cpp

    r62477 r62564  
    9595                                            const char *pszName, RTEXITCODE rcExit, PRTFOFF pcBytes)
    9696{
     97    RT_NOREF_PV(pOpts);
     98
    9799    /*
    98100     * Query all the information.
  • trunk/src/VBox/Runtime/common/zip/zip.cpp

    r62477 r62564  
    17201720{
    17211721    /* input validation - the crash and burn approach as speed is essential here. */
    1722     Assert(enmLevel <= RTZIPLEVEL_MAX && enmLevel >= RTZIPLEVEL_STORE);
    1723     Assert(!fFlags);
     1722    Assert(enmLevel <= RTZIPLEVEL_MAX && enmLevel >= RTZIPLEVEL_STORE); RT_NOREF_PV(enmLevel);
     1723    Assert(!fFlags);                                                    RT_NOREF_PV(fFlags);
    17241724
    17251725    /*
     
    18361836{
    18371837    /* input validation - the crash and burn approach as speed is essential here. */
    1838     Assert(!fFlags);
     1838    Assert(!fFlags); RT_NOREF_PV(fFlags);
    18391839
    18401840    /*
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