Searched refs:hVfsIosDst (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Runtime/common/zip/
H A Dunzipcmd.cpp136 RTVFSIOSTREAM hVfsIosDst;
137 rc = RTVfsIoStrmFromRTFile(hFile, fOpen, true /*fLeaveOpen*/, &hVfsIosDst);
144 rc = RTVfsUtilPumpIoStreams(hVfsIosSrc, hVfsIosDst, (uint32_t)RT_MIN(pUnixInfo->cbObject, _1M));
160 RTVfsIoStrmRelease(hVfsIosDst);
H A Dgzipvfs.cpp781 RTDECL(int) RTZipGzipCompressIoStream(RTVFSIOSTREAM hVfsIosDst, uint32_t fFlags, uint8_t uLevel, PRTVFSIOSTREAM phVfsIosZip) argument
783 AssertPtrReturn(hVfsIosDst, VERR_INVALID_HANDLE);
788 uint32_t cRefs = RTVfsIoStrmRetain(hVfsIosDst);
800 pThis->hVfsIos = hVfsIosDst;
829 RTVfsIoStrmRelease(hVfsIosDst);
H A Dtarcmd.cpp491 RTVFSIOSTREAM hVfsIosDst;
492 rc = RTVfsIoStrmFromRTFile(hFile, fOpen, true /*fLeaveOpen*/, &hVfsIosDst);
499 rc = RTVfsUtilPumpIoStreams(hVfsIosSrc, hVfsIosDst, (uint32_t)RT_MIN(pUnixInfo->cbObject, _1M));
540 RTVfsIoStrmRelease(hVfsIosDst);
/vbox/include/iprt/
H A Dzip.h246 * @param hVfsIosDst The compressed output stream (must be writable).
254 RTDECL(int) RTZipGzipCompressIoStream(RTVFSIOSTREAM hVfsIosDst, uint32_t fFlags, uint8_t uLevel, PRTVFSIOSTREAM phVfsIosGzip);
H A Dvfs.h900 * The data is read in chunks from @a hVfsIosSrc and written to @a hVfsIosDst
906 * @param hVfsIosDst The output stream.
910 RTDECL(int) RTVfsUtilPumpIoStreams(RTVFSIOSTREAM hVfsIosSrc, RTVFSIOSTREAM hVfsIosDst, size_t cbBufHint);
/vbox/src/VBox/Main/src-server/
H A DApplianceImplIO.cpp1700 RTVFSIOSTREAM hVfsIosDst; local
1703 &hVfsIosDst);
1724 rc = RTVfsUtilPumpIoStreams(hVfsIosMfst, hVfsIosDst, 0);
1730 RTVfsIoStrmRelease(hVfsIosDst);
1769 RTVFSIOSTREAM hVfsIosDst; local
1772 &hVfsIosDst);
1793 rc = RTVfsUtilPumpIoStreams(hVfsIosMfst, hVfsIosDst, 0);
1799 RTVfsIoStrmRelease(hVfsIosDst);
/vbox/src/VBox/Main/src-helper-apps/
H A DVBoxExtPackHelperApp.cpp426 RTVFSIOSTREAM hVfsIosDst; local
429 false /*fReadOrWrite*/, &hVfsIosDst);
436 rc = RTVfsUtilPumpIoStreams(hVfsIosSrc, hVfsIosDst, (uint32_t)RT_MIN(ObjInfo.cbObject, _1G));
439 rc = RTManifestPtIosAddEntryNow(hVfsIosDst);
442 RTVfsIoStrmRelease(hVfsIosDst);
443 hVfsIosDst = NIL_RTVFSIOSTREAM;
464 RTVfsIoStrmRelease(hVfsIosDst);
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsmemory.cpp777 RTVFSIOSTREAM hVfsIosDst = RTVfsFileToIoStream(hVfsFile);
778 rc = RTVfsUtilPumpIoStreams(hVfsIos, hVfsIosDst, pThis->cbExtent);
779 RTVfsIoStrmRelease(hVfsIosDst);
H A Dvfsbase.cpp1525 RTDECL(int) RTVfsUtilPumpIoStreams(RTVFSIOSTREAM hVfsIosSrc, RTVFSIOSTREAM hVfsIosDst, size_t cbBufHint) argument
1560 rc = RTVfsIoStrmWrite(hVfsIosDst, pvBuf, cbRead, true /*fBlocking*/, NULL /*cbWritten*/);
1572 rc = RTVfsIoStrmFlush(hVfsIosDst);

Completed in 105 milliseconds