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

/vbox/include/iprt/
H A Dzip.h266 * @param phVfsFss Where to return the handle to the TAR
269 RTDECL(int) RTZipTarFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss);
292 * @param phVfsFss Where to return the handle to the TAR
295 RTDECL(int) RTZipPkzipFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss);
333 * @param phVfsFss Where to return the handle to the XAR filesystem
336 RTDECL(int) RTZipXarFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss);
H A Dvfslowlevel.h305 * @param phVfsFss Where to return the new handle.
429 * @param phVfsFss Where to return the new handle.
434 PRTVFSFSSTREAM phVfsFss, void **ppvInstance);
1110 * @param phVfsFss Where to returned the filesystem stream handle.
1112 DECLCALLBACKMEMBER(int, pfnOpenFsStream)(PCRTVFSCHAINELEMSPEC pSpec, PRTVFSFSSTREAM phVfsFss);
H A Dvfs.h934 RTDECL(int) RTVfsChainOpenFsStream( const char *pszSpec, PRTVFSFSSTREAM phVfsFss, const char **ppszError);
/vbox/src/VBox/Runtime/common/zip/
H A Dunzipcmd.cpp249 * @param phVfsFss Where to return the UNZIP filesystem stream handle.
251 static RTEXITCODE rtZipUnzipCmdOpenInputArchive(PRTZIPUNZIPCMDOPS pOpts, PRTVFSFSSTREAM phVfsFss) argument
274 rc = RTZipPkzipFsStreamFromIoStream(hVfsIos, 0 /*fFlags*/, phVfsFss);
H A Dpkzipvfs.cpp1242 RTDECL(int) RTZipPkzipFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss) argument
1247 AssertPtrReturn(phVfsFss, VERR_INVALID_HANDLE);
1248 *phVfsFss = NIL_RTVFSFSSTREAM;
1271 *phVfsFss = hVfsFss;
H A Dtarcmd.cpp181 * @param phVfsFss Where to return the TAR filesystem stream handle.
183 static RTEXITCODE rtZipTarCmdOpenInputArchive(PRTZIPTARCMDOPS pOpts, PRTVFSFSSTREAM phVfsFss) argument
268 rc = RTZipTarFsStreamFromIoStream(hVfsIos, 0/*fFlags*/, phVfsFss);
271 rc = RTZipXarFsStreamFromIoStream(hVfsIos, 0/*fFlags*/, phVfsFss);
276 rc = RTZipTarFsStreamFromIoStream(hVfsIos, 0/*fFlags*/, phVfsFss);
H A Dtarvfs.cpp1514 RTDECL(int) RTZipTarFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss) argument
1519 AssertPtrReturn(phVfsFss, VERR_INVALID_HANDLE);
1520 *phVfsFss = NIL_RTVFSFSSTREAM;
1552 *phVfsFss = hVfsFss;
H A Dxarvfs.cpp2023 RTDECL(int) RTZipXarFsStreamFromIoStream(RTVFSIOSTREAM hVfsIosIn, uint32_t fFlags, PRTVFSFSSTREAM phVfsFss) argument
2028 AssertPtrReturn(phVfsFss, VERR_INVALID_HANDLE);
2029 *phVfsFss = NIL_RTVFSFSSTREAM;
2091 *phVfsFss = hVfsFss;
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsbase.cpp1672 PRTVFSFSSTREAM phVfsFss, void **ppvInstance)
1685 AssertPtr(phVfsFss);
1710 *phVfsFss = pThis;
1671 RTVfsNewFsStream(PCRTVFSFSSTREAMOPS pFsStreamOps, size_t cbInstance, RTVFS hVfs, RTVFSLOCK hLock, PRTVFSFSSTREAM phVfsFss, void **ppvInstance) argument

Completed in 95 milliseconds