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

/vbox/src/VBox/Devices/Storage/
H A DDrvVD.cpp174 size_t cbDataValid; member in struct:VBOXDISK
1619 && off - pThis->offDisk < pThis->cbDataValid)
1621 size_t cbToCopy = RT_MIN(cbRead, pThis->offDisk + pThis->cbDataValid - off);
1633 pThis->cbDataValid = RT_MIN(pThis->cbDisk - off, pThis->cbBootAccelBuffer);
1635 rc = VDRead(pThis->pDisk, off, pThis->pbData, pThis->cbDataValid);
1637 pThis->cbDataValid = 0;
1673 && off - pThis->offDisk < pThis->cbDataValid)
1675 size_t cbToCopy = RT_MIN(cbRead, pThis->offDisk + pThis->cbDataValid - off);
1687 pThis->cbDataValid = RT_MIN(pThis->cbDisk - off, pThis->cbBootAccelBuffer);
1689 rc = VDRead(pThis->pDisk, off, pThis->pbData, pThis->cbDataValid);
[all...]

Completed in 39 milliseconds