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

/vbox/src/VBox/Main/src-server/
H A DApplianceImplIO.cpp56 RTTARFILE hTarFile; member in struct:TARSTORAGEINTERNAL
358 rc = RTTarFileOpen((RTTAR)pvUser, &pInt->hTarFile, RTPathFilename(pszLocation), fOpen);
379 int rc = RTTarFileClose(pInt->hTarFile);
380 pInt->hTarFile = NIL_RTTARFILE;
400 return RTTarFileGetSize(pInt->hTarFile, pcbSize);
413 return RTTarFileSetSize(pInt->hTarFile, cbSize);
427 return RTTarFileWriteAt(pInt->hTarFile, uOffset, pvBuf, cbWrite, pcbWritten);
443 return RTTarFileReadAt(pInt->hTarFile, uOffset, pvBuf, cbRead, pcbRead);
/vbox/src/VBox/Runtime/common/zip/
H A Dtar.cpp106 RTFILE hTarFile; member in struct:RTTARINTERNAL
107 /** The open mode for hTarFile. */
210 int rc = RTFileOpen(&pThis->hTarFile, pszTarname, fMode);
239 rc = RTFileWrite(pInt->hTarFile, &record, sizeof(record), NULL);
255 if (pInt->hTarFile != NIL_RTFILE)
257 rc = RTFileClose(pInt->hTarFile);
258 pInt->hTarFile = NIL_RTFILE;
343 if (!pInt->hTarFile)
370 rc = RTVfsFileFromRTFile(pInt->hTarFile, RTFILE_O_READ, true /*fLeaveOpen*/, &pInt->hVfsFile);
424 rc = RTFileSeek(pFileInt->pTar->hTarFile,
[all...]

Completed in 826 milliseconds