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

/vbox/src/VBox/Runtime/r3/posix/
H A Dfileio-posix.cpp447 off_t offCurrent = lseek(RTFileToNative(hFile), (off_t)offSeek, aSeekRecode[uMethod]); local
448 if (offCurrent != ~0)
451 *poffActual = (uint64_t)offCurrent;
/vbox/src/VBox/Runtime/r3/win/
H A Dfileio-win.cpp112 uint64_t offCurrent; local
113 if (MySetFilePointer(hFile, 0, &offCurrent, FILE_CURRENT))
118 MySetFilePointer(hFile, offCurrent, NULL, FILE_BEGIN);
596 uint64_t offCurrent; local
597 if (MySetFilePointer(hFile, 0, &offCurrent, FILE_CURRENT))
611 if ( MySetFilePointer(hFile, offCurrent, NULL, FILE_BEGIN)
612 || offCurrent > cbSize)
620 MySetFilePointer(hFile, offCurrent, NULL, FILE_BEGIN);
/vbox/src/VBox/Runtime/common/zip/
H A Dtar.cpp142 uint64_t offCurrent; member in struct:RTTARFILEINTERNAL
295 pNewFile->offCurrent = 0;
603 rc = RTTarFileWriteAt(pFileInt, pFileInt->offCurrent, pvTmp, cbToWrite, &cbWritten);
700 pFileInt->offCurrent = off + cbTmpRead;
723 pFileInt->offCurrent = off + cbTmpWritten;
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA.cpp3351 uint32_t offCurrent = offSrc; local
3355 while (offDesc + pDesc->numPages * PAGE_SIZE <= offCurrent)
3366 if (offCurrent + cbCurrentWidth <= offDesc + pDesc->numPages * PAGE_SIZE)
3372 cbToCopy = (offDesc + pDesc->numPages * PAGE_SIZE - offCurrent);
3376 LogFlow(("vmsvgaGMRTransfer: %s phys=%RGp\n", (enmTransferType == SVGA3D_WRITE_HOST_VRAM) ? "READ" : "WRITE", pDesc->GCPhys + offCurrent - offDesc));
3379 rc = PDMDevHlpPhysRead(pThis->CTX_SUFF(pDevIns), pDesc->GCPhys + offCurrent - offDesc, pCurrentDest, cbToCopy);
3381 rc = PDMDevHlpPhysWrite(pThis->CTX_SUFF(pDevIns), pDesc->GCPhys + offCurrent - offDesc, pCurrentDest, cbToCopy);
3385 offCurrent += cbToCopy;

Completed in 48 milliseconds