Searched refs:phVfsFile (Results 1 - 11 of 11) sorted by relevance

/vbox/include/iprt/
H A Dvfs.h702 RTDECL(int) RTVfsFileOpen(RTVFS hVfs, const char *pszFilename, uint64_t fOpen, PRTVFSFILE phVfsFile);
713 * @param phVfsFile Where to return the VFS file handle.
715 RTDECL(int) RTVfsFileFromRTFile(RTFILE hFile, uint64_t fOpen, bool fLeaveOpen, PRTVFSFILE phVfsFile);
725 * @param phVfsFile Where to return the VFS file handle.
727 RTDECL(int) RTVfsFileOpenNormal(const char *pszFilename, uint64_t fOpen, PRTVFSFILE phVfsFile);
891 * @param phVfsFile Where to return the handle to the memory file on
894 RTDECL(int) RTVfsMemorizeIoStreamAsFile(RTVFSIOSTREAM hVfsIos, uint32_t fFlags, PRTVFSFILE phVfsFile);
936 RTDECL(int) RTVfsChainOpenFile( const char *pszSpec, uint64_t fOpen, PRTVFSFILE phVfsFile, const char **ppszError);
H A Dvfslowlevel.h484 * @param phVfsFile Where to return the thandle to the opened file.
487 DECLCALLBACKMEMBER(int, pfnOpenFile)(void *pvThis, const char *pszFilename, uint32_t fOpen, PRTVFSFILE phVfsFile);
857 * @param phVfsFile Where to return the new handle.
862 PRTVFSFILE phVfsFile, void **ppvInstance);
1081 * @param phVfsFile Where to returned the file handle.
1083 DECLCALLBACKMEMBER(int, pfnOpenFile)( PCRTVFSCHAINELEMSPEC pSpec, uint32_t fOpen, PRTVFSFILE phVfsFile);
/vbox/src/VBox/Runtime/common/vfs/
H A Dvfsstdfile.cpp428 * @param phVfsFile Where to return the handle.
430 static int rtVfsFileFromRTFile(RTFILE hFile, uint64_t fOpen, bool fLeaveOpen, PRTVFSFILE phVfsFile) argument
441 *phVfsFile = hVfsFile;
446 RTDECL(int) RTVfsFileFromRTFile(RTFILE hFile, uint64_t fOpen, bool fLeaveOpen, PRTVFSFILE phVfsFile) argument
462 return rtVfsFileFromRTFile(hFile, fOpen, fLeaveOpen, phVfsFile);
466 RTDECL(int) RTVfsFileOpenNormal(const char *pszFilename, uint64_t fOpen, PRTVFSFILE phVfsFile) argument
478 rc = rtVfsFileFromRTFile(hFile, fOpen, false /*fLeaveOpen*/, phVfsFile);
H A Dvfschain.cpp566 RTDECL(int) RTVfsChainOpenFile(const char *pszSpec, uint64_t fOpen, PRTVFSFILE phVfsFile, const char **ppszError) argument
570 AssertPtrReturn(phVfsFile, VERR_INVALID_POINTER);
587 *phVfsFile = hVfsFile;
H A Dvfsbase.cpp2382 PRTVFSFILE phVfsFile, void **ppvInstance)
2395 AssertPtr(phVfsFile);
2422 *phVfsFile = pThis;
2428 RTDECL(int) RTVfsFileOpen(RTVFS hVfs, const char *pszFilename, uint64_t fOpen, PRTVFSFILE phVfsFile) argument
2437 AssertPtrReturn(phVfsFile, VERR_INVALID_POINTER);
2465 rc = pVfsParentDir->pOps->pfnOpenFile(pVfsParentDir->Base.pvThis, pszEntryName, fOpen, phVfsFile);
2472 AssertPtr(*phVfsFile);
2473 Assert((*phVfsFile)->uMagic == RTVFSFILE_MAGIC);
2381 RTVfsNewFile(PCRTVFSFILEOPS pFileOps, size_t cbInstance, uint32_t fOpen, RTVFS hVfs, RTVFSLOCK hLock, PRTVFSFILE phVfsFile, void **ppvInstance) argument
H A Dvfsmemory.cpp747 RTDECL(int) RTVfsMemorizeIoStreamAsFile(RTVFSIOSTREAM hVfsIos, uint32_t fFlags, PRTVFSFILE phVfsFile)
789 *phVfsFile = hVfsFile;
/vbox/src/VBox/Main/src-all/
H A DExtPackUtil.cpp872 * @param phVfsFile Where to store the handle to the memorized
878 PRTVFSOBJ phVfsObj, PRTVFSFILE phVfsFile, char *pszError, size_t cbError)
885 if (phVfsFile && *phVfsFile != NIL_RTVFSFILE)
933 if (phVfsFile && RT_SUCCESS(rc))
934 *phVfsFile = hVfsFile;
1283 PRTVFSFILE phVfsFile = NULL; local
1285 phVfsFile = &hXmlFile;
1287 phVfsFile = &hManifestFile;
1289 phVfsFile
877 VBoxExtPackValidateStandardFile(const char *pszAdjName, RTVFSOBJTYPE enmType, PRTVFSOBJ phVfsObj, PRTVFSFILE phVfsFile, char *pszError, size_t cbError) argument
[all...]
/vbox/src/VBox/Storage/
H A DVDIfVfs.cpp388 VBOXDDU_DECL(int) VDIfCreateVfsFile(PVDINTERFACEIO pVDIfs, struct VDINTERFACEIOINT *pVDIfsInt, void *pvStorage, uint32_t fFlags, PRTVFSFILE phVfsFile) argument
391 AssertPtrReturn(phVfsFile, VERR_INVALID_POINTER);
407 *phVfsFile = hVfsFile;
H A DVDVfs.cpp522 PRTVFSFILE phVfsFile)
525 AssertPtrReturn(phVfsFile, VERR_INVALID_POINTER);
541 *phVfsFile = hVfsFile;
521 VDCreateVfsFileFromDisk(PVBOXHDD pDisk, uint32_t fFlags, PRTVFSFILE phVfsFile) argument
/vbox/include/VBox/
H A Dvd.h1384 * @param phVfsFile Where to store the handle to the VFS file on
1388 PRTVFSFILE phVfsFile);
H A Dvd-ifs.h643 * @param phVfsFile Where to return the VFS file handle on success.
645 VBOXDDU_DECL(int) VDIfCreateVfsFile(PVDINTERFACEIO pVDIfs, struct VDINTERFACEIOINT *pVDIfsInt, void *pvStorage, uint32_t fFlags, PRTVFSFILE phVfsFile);

Completed in 60 milliseconds