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

/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsstdfile.cpp96 * @param cbActuallyRead The number of bytes actually read.
98 DECLINLINE(int) rtVfsStdFile_ReadFixRC(PRTVFSSTDFILE pThis, RTFOFF off, size_t cbToRead, size_t cbActuallyRead) argument
102 if (cbToRead > cbActuallyRead)
/vbox/src/VBox/Runtime/common/zip/
H A Dxarvfs.cpp886 size_t cbActuallyRead = *pcbRead; local
891 rtZipXarHashUpdate(&pThis->CtxArchived, pThis->DataAttr.uHashFunArchived, pSgBuf->paSegs[0].pvSeg, cbActuallyRead);
892 rtZipXarHashUpdate(&pThis->CtxExtracted, pThis->DataAttr.uHashFunExtracted, pSgBuf->paSegs[0].pvSeg, cbActuallyRead);
893 pThis->cbDigested += cbActuallyRead;
896 && pThis->cbDigested < (RTFOFF)(pThis->offCurPos + cbActuallyRead))
900 size_t cbHash = cbActuallyRead - offHash;
908 pThis->offCurPos += cbActuallyRead;
1224 size_t cbActuallyRead = pcbRead ? *pcbRead : pSgBuf->paSegs[0].cbSeg;
1225 pThis->offCurPos += cbActuallyRead;
1226 rtZipXarHashUpdate(&pThis->CtxExtracted, pThis->uHashFunExtracted, pSgBuf->paSegs[0].pvSeg, cbActuallyRead);
[all...]
/vbox/src/VBox/Storage/
H A DDMG.cpp542 size_t cbActuallyRead; local
552 rc = RTZipDecompress(pZip, pvBuf, cbBuf, &cbActuallyRead);
556 if (cbActuallyRead != cbBuf)
H A DISCSI.cpp911 size_t cbToRead, cbActuallyRead, residual, cbSegActual = 0, cbAHSLength, cbDataLength; local
941 rc = pImage->pIfNet->pfnRead(pImage->Socket, pDst, residual, &cbActuallyRead);
944 if (cbActuallyRead == 0)
955 residual -= cbActuallyRead;
956 pDst += cbActuallyRead;
977 cbToRead -= cbActuallyRead;
980 pDst += cbActuallyRead;
981 residual -= cbActuallyRead;
999 cbToRead, residual, cbSegActual, cbActuallyRead));
2331 size_t cbActuallyRead
[all...]
H A DVMDK.cpp690 size_t cbCompSize, cbActuallyRead; local
739 pvBuf, cbToRead, &cbActuallyRead);
750 rc = RTZipDecompress(pZip, pvBuf, cbToRead, &cbActuallyRead);
759 if (cbActuallyRead != cbToRead)

Completed in 637 milliseconds