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

/vbox/src/VBox/Runtime/common/zip/
H A Dgzipvfs.cpp685 RTDECL(int) RTZipGzipDecompressIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSIOSTREAM phVfsIosOut) argument
687 AssertPtrReturn(hVfsIosIn, VERR_INVALID_HANDLE);
691 uint32_t cRefs = RTVfsIoStrmRetain(hVfsIosIn);
703 pThis->hVfsIos = hVfsIosIn;
776 RTVfsIoStrmRelease(hVfsIosIn);
H A Dtarvfs.cpp1514 RTDECL(int) RTZipTarFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss) argument
1521 AssertPtrReturn(hVfsIosIn, VERR_INVALID_HANDLE);
1524 RTFOFF const offStart = RTVfsIoStrmTell(hVfsIosIn);
1527 uint32_t cRefs = RTVfsIoStrmRetain(hVfsIosIn);
1538 pThis->hVfsIos = hVfsIosIn;
1556 RTVfsIoStrmRelease(hVfsIosIn);
H A Dpkzipvfs.cpp1242 RTDECL(int) RTZipPkzipFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss) argument
1249 AssertPtrReturn(hVfsIosIn, VERR_INVALID_HANDLE);
1252 uint32_t cRefs = RTVfsIoStrmRetain(hVfsIosIn);
1264 pThis->hVfsIos = hVfsIosIn;
1275 RTVfsIoStrmRelease(hVfsIosIn);
H A Dxarvfs.cpp1862 * @param hVfsIosIn The input stream.
1869 static int rtZipXarReadAndValidateToc(RTVFSIOSTREAM hVfsIosIn, PCXARHEADER pXarHdr, argument
1882 rc = RTVfsIoStrmRead(hVfsIosIn, pvInput, pXarHdr->cbTocCompressed, true /*fBlocking*/, NULL);
1970 * @param hVfsIosIn The input stream.
1973 static int rtZipXarReadAndValidateHeader(RTVFSIOSTREAM hVfsIosIn, PXARHEADER pXarHdr) argument
1978 int rc = RTVfsIoStrmRead(hVfsIosIn, pXarHdr, sizeof(*pXarHdr), true /*fBlocking*/, NULL);
2014 rc = RTVfsIoStrmSkip(hVfsIosIn, pXarHdr->cbHeader - sizeof(XARHEADER));
2023 RTDECL(int) RTZipXarFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss) argument
2030 AssertPtrReturn(hVfsIosIn, VERR_INVALID_HANDLE);
2033 RTFOFF const offStart = RTVfsIoStrmTell(hVfsIosIn);
[all...]

Completed in 66 milliseconds