Searched refs:pcbFree (Results 1 - 14 of 14) sorted by relevance

/vbox/src/VBox/Runtime/generic/
H A Dfs-stubs-generic.cpp42 RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, RTFOFF *pcbTotal, RTFOFF *pcbFree, argument
47 if (pcbFree)
48 *pcbFree = _1G;
/vbox/src/VBox/Runtime/r3/posix/
H A DRTFileQueryFsSizes-posix.cpp45 RTR3DECL(int) RTFileQueryFsSizes(RTFILE hFile, PRTFOFF pcbTotal, RTFOFF *pcbFree, argument
58 if (pcbFree)
59 *pcbFree = (RTFOFF)StatVFS.f_bavail * StatVFS.f_frsize;
H A Dfs-posix.cpp54 RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, RTFOFF *pcbTotal, RTFOFF *pcbFree, argument
80 if (pcbFree)
81 *pcbFree = (RTFOFF)StatVFS.f_bavail * StatVFS.f_frsize;
94 pszFsPath, pszFsPath, pcbTotal, pcbTotal ? *pcbTotal : 0, pcbFree, pcbFree ? *pcbFree : 0,
/vbox/src/VBox/Runtime/r3/nt/
H A Dfs-nt.cpp46 RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, RTFOFF *pcbTotal, RTFOFF *pcbFree, argument
87 if (pcbFree)
89 *pcbFree = FsSizeInfo.AvailableAllocationUnits.QuadPart
92 if ( *pcbFree / FsSizeInfo.SectorsPerAllocationUnit / FsSizeInfo.BytesPerSector
94 *pcbFree = UINT64_MAX;
/vbox/src/VBox/Runtime/r3/win/
H A Dfs-win.cpp183 RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, RTFOFF *pcbTotal, RTFOFF *pcbFree, argument
198 if (pcbTotal || pcbFree)
206 if (pcbFree)
207 *pcbFree = cbFree.QuadPart;
H A Dfileio-win.cpp959 RTR3DECL(int) RTFileQueryFsSizes(RTFILE hFile, PRTFOFF pcbTotal, RTFOFF *pcbFree, argument
/vbox/src/VBox/Main/src-client/
H A DEbmlWriter.cpp298 RTFOFF pcbFree; local
299 int rc = RTFileQueryFsSizes(m_File, NULL, &pcbFree, 0, 0);
300 return (RT_SUCCESS(rc)? (uint64_t)pcbFree : UINT64_MAX);
/vbox/src/VBox/HostServices/SharedFolders/
H A Dteststubs.h76 extern int testRTFsQuerySizes(const char *pszFsPath, RTFOFF *pcbTotal, RTFOFF *pcbFree, uint32_t *pcbBlock, uint32_t *pcbSector);
/vbox/include/VBox/
H A Dvd-ifs-internal.h463 int64_t *pcbFree)
465 return pIfIoInt->pfnGetFreeSpace(pIfIoInt->Core.pvUser, pszFilename, pcbFree);
462 vdIfIoIntFileGetFreeSpace(PVDINTERFACEIOINT pIfIoInt, const char *pszFilename, int64_t *pcbFree) argument
H A Dvd-ifs.h566 int64_t *pcbFree)
568 return pIfIo->pfnGetFreeSpace(pIfIo->Core.pvUser, pszFilename, pcbFree);
565 vdIfIoFileGetFreeSpace(PVDINTERFACEIO pIfIo, const char *pszFilename, int64_t *pcbFree) argument
/vbox/include/iprt/
H A Dfs.h468 * @param pcbFree Where to store the remaining free space in the filesystem. (Optional)
474 RTR3DECL(int) RTFsQuerySizes(const char *pszFsPath, PRTFOFF pcbTotal, RTFOFF *pcbFree,
H A Dfile.h1009 * @param pcbFree Where to store the remaining free space in the filesystem. (Optional)
1015 RTDECL(int) RTFileQueryFsSizes(RTFILE hFile, PRTFOFF pcbTotal, RTFOFF *pcbFree,
/vbox/src/VBox/Main/src-server/
H A DSnapshotImpl.cpp2801 RTFOFF pcbFree = 0; local
2879 int vrc = RTFsQuerySizes(it_sm->second, &pcbTotal, &pcbFree,&pcbBlock, &pcbSector);
2888 if (commonSourceStoragesSize > (uint64_t)pcbFree)
/vbox/src/VBox/HostServices/SharedFolders/testcase/
H A DtstSharedFolderService.cpp388 RTFOFF *pcbFree, uint32_t *pcbBlock,
387 testRTFsQuerySizes(const char *pszFsPath, PRTFOFF pcbTotal, RTFOFF *pcbFree, uint32_t *pcbBlock, uint32_t *pcbSector) argument

Completed in 2064 milliseconds