Searched refs:StatVFS (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A DRTFileQueryFsSizes-posix.cpp48 struct statvfs StatVFS; local
49 RT_ZERO(StatVFS);
50 if (fstatvfs(RTFileToNative(hFile), &StatVFS))
57 *pcbTotal = (RTFOFF)StatVFS.f_blocks * StatVFS.f_frsize;
59 *pcbFree = (RTFOFF)StatVFS.f_bavail * StatVFS.f_frsize;
61 *pcbBlock = StatVFS.f_frsize;
H A Dfs-posix.cpp71 struct statvfs StatVFS; local
72 RT_ZERO(StatVFS);
73 if (!statvfs(pszNativeFsPath, &StatVFS))
79 *pcbTotal = (RTFOFF)StatVFS.f_blocks * StatVFS.f_frsize;
81 *pcbFree = (RTFOFF)StatVFS.f_bavail * StatVFS.f_frsize;
83 *pcbBlock = StatVFS.f_frsize;
147 struct statvfs StatVFS; local
148 RT_ZERO(StatVFS);
[all...]

Completed in 41 milliseconds