Searched defs:offCurPos (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Storage/
H A DVDIfVfs.cpp53 RTFOFF offCurPos; member in struct:VDIFVFSIOSFILE
95 off = pThis->offCurPos;
108 pThis->offCurPos = off + cbAdvance;
129 off = pThis->offCurPos;
140 pThis->offCurPos = off + (pcbWritten ? *pcbWritten : pSgBuf->paSegs[0].cbSeg);
185 *poffActual = pThis->offCurPos;
233 pThis->offCurPos = 0;
307 offSeek += pThis->offCurPos;
323 pThis->offCurPos = offSeek;
405 pThis->offCurPos
[all...]
H A DVDVfs.cpp46 uint64_t offCurPos; member in struct:VDVFSFILE
235 uint64_t offUnsigned = off < 0 ? pThis->offCurPos : (uint64_t)off;
241 pThis->offCurPos = offUnsigned;
271 pThis->offCurPos = offUnsigned;
291 uint64_t offUnsigned = off < 0 ? pThis->offCurPos : (uint64_t)off;
297 pThis->offCurPos = offUnsigned;
326 pThis->offCurPos = offUnsigned;
366 *poffActual = pThis->offCurPos;
428 offWrt = pThis->offCurPos;
462 pThis->offCurPos
[all...]
/vbox/src/VBox/Runtime/common/dvm/
H A Ddvmvfs.cpp56 uint64_t offCurPos; member in struct:RTVFSDVMFILE
100 uint64_t offUnsigned = off < 0 ? pThis->offCurPos : (uint64_t)off;
106 pThis->offCurPos = offUnsigned;
136 pThis->offCurPos = offUnsigned;
156 uint64_t offUnsigned = off < 0 ? pThis->offCurPos : (uint64_t)off;
162 pThis->offCurPos = offUnsigned;
191 pThis->offCurPos = offUnsigned;
231 *poffActual = pThis->offCurPos;
293 offWrt = pThis->offCurPos;
327 pThis->offCurPos
[all...]
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsmemory.cpp103 uint64_t offCurPos; member in struct:RTVFSMEMFILE
261 uint64_t offUnsigned = off < 0 ? pThis->offCurPos : (uint64_t)off;
267 pThis->offCurPos = offUnsigned;
357 pThis->offCurPos = offUnsigned;
459 uint64_t offUnsigned = off < 0 ? pThis->offCurPos : (uint64_t)off;
534 pThis->offCurPos = offUnsigned;
579 *poffActual = pThis->offCurPos;
650 offWrt = pThis->offCurPos;
685 pThis->offCurPos = offNew;
764 pThis->offCurPos
[all...]
/vbox/src/VBox/Runtime/common/zip/
H A Dxarvfs.cpp173 RTFOFF offCurPos; member in struct:RTZIPXARIOSTREAM
224 RTFOFF offCurPos; member in struct:RTZIPXARDECOMPIOS
855 off = pThis->offCurPos;
889 if (pThis->offCurPos == pThis->cbDigested)
895 else if ( pThis->cbDigested > pThis->offCurPos
896 && pThis->cbDigested < (RTFOFF)(pThis->offCurPos + cbActuallyRead))
898 size_t offHash = pThis->cbDigested - pThis->offCurPos;
908 pThis->offCurPos += cbActuallyRead;
913 if (pThis->offCurPos >= pThis->DataAttr.cbDataArchived)
915 Assert(pThis->offCurPos
[all...]

Completed in 52 milliseconds