Changeset 62564 in vbox for trunk/src/VBox/Runtime/common/zip
- Timestamp:
- Jul 26, 2016 2:43:03 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109133
- Location:
- trunk/src/VBox/Runtime/common/zip
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/zip/pkzip.cpp
r62477 r62564 91 91 PMEMIOSTREAM pThis = (PMEMIOSTREAM)pvThis; 92 92 Assert(pSgBuf->cSegs == 1); 93 RT_NOREF_PV(fBlocking); 93 94 94 95 if (off < 0) … … 119 120 static DECLCALLBACK(int) memFssIos_Write(void *pvThis, RTFOFF off, PCRTSGBUF pSgBuf, bool fBlocking, size_t *pcbWritten) 120 121 { 122 RT_NOREF_PV(pvThis); RT_NOREF_PV(off); RT_NOREF_PV(pSgBuf); RT_NOREF_PV(fBlocking); RT_NOREF_PV(pcbWritten); 121 123 return VERR_NOT_IMPLEMENTED; 122 124 } … … 127 129 static DECLCALLBACK(int) memFssIos_Flush(void *pvThis) 128 130 { 131 RT_NOREF_PV(pvThis); 129 132 return VERR_NOT_IMPLEMENTED; 130 133 } … … 135 138 static DECLCALLBACK(int) memFssIos_PollOne(void *pvThis, uint32_t fEvents, RTMSINTERVAL cMillies, bool fIntr, uint32_t *pfRetEvents) 136 139 { 140 RT_NOREF_PV(pvThis); RT_NOREF_PV(fEvents); RT_NOREF_PV(cMillies); RT_NOREF_PV(fIntr); RT_NOREF_PV(pfRetEvents); 137 141 return VERR_NOT_IMPLEMENTED; 138 142 } -
trunk/src/VBox/Runtime/common/zip/pkzipvfs.cpp
r62477 r62564 898 898 PRTZIPPKZIPIOSTREAM pThis = (PRTZIPPKZIPIOSTREAM)pvThis; 899 899 Assert(pSgBuf->cSegs == 1); 900 RT_NOREF_PV(fBlocking); 900 901 901 902 if (off < 0) … … 981 982 } 982 983 983 static DECLCALLBACK(int) rtZipPkzipFssIos_Write(void *pvThis, RTFOFF off, PCRTSGBUF pSgBuf, bool fBlocking, size_t *pcWritten) 984 { 984 static 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); 985 987 return VERR_NOT_IMPLEMENTED; 986 988 } … … 988 990 static DECLCALLBACK(int) rtZipPkzipFssIos_Flush(void *pvThis) 989 991 { 992 RT_NOREF_PV(pvThis); 990 993 return VERR_NOT_IMPLEMENTED; 991 994 } -
trunk/src/VBox/Runtime/common/zip/unzipcmd.cpp
r62477 r62564 95 95 const char *pszName, RTEXITCODE rcExit, PRTFOFF pcBytes) 96 96 { 97 RT_NOREF_PV(pOpts); 98 97 99 /* 98 100 * Query all the information. -
trunk/src/VBox/Runtime/common/zip/zip.cpp
r62477 r62564 1720 1720 { 1721 1721 /* 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); 1724 1724 1725 1725 /* … … 1836 1836 { 1837 1837 /* input validation - the crash and burn approach as speed is essential here. */ 1838 Assert(!fFlags); 1838 Assert(!fFlags); RT_NOREF_PV(fFlags); 1839 1839 1840 1840 /*
Note:
See TracChangeset
for help on using the changeset viewer.