Lines Matching refs:sfs
181 # define __OSL_STATFS(dir, sfs) statfs((dir), (sfs)) argument
199 # define __OSL_STATFS(dir, sfs) statfs((dir), (sfs)) argument
210 # define __OSL_STATFS(dir, sfs) statvfs((dir), (sfs)) argument
228 # define __OSL_STATFS(dir, sfs) (1) argument
229 # define __OSL_STATFS_ISREMOTE(sfs) (0) argument
238 __OSL_STATFS_STRUCT sfs; in osl_psz_getVolumeInformation() local
243 __OSL_STATFS_INIT(sfs); in osl_psz_getVolumeInformation()
248 if ((__OSL_STATFS(pszDirectory, &sfs)) < 0) in osl_psz_getVolumeInformation()
257 if (__OSL_STATFS_ISREMOTE(sfs)) in osl_psz_getVolumeInformation()
265 if (__OSL_STATFS_IS_CASE_SENSITIVE_FS(sfs)) in osl_psz_getVolumeInformation()
268 if (__OSL_STATFS_IS_CASE_PRESERVING_FS(sfs)) in osl_psz_getVolumeInformation()
283 pInfo->uTotalSpace = __OSL_STATFS_BLKSIZ(sfs); in osl_psz_getVolumeInformation()
284 pInfo->uTotalSpace *= (sal_uInt64)(sfs.f_blocks); in osl_psz_getVolumeInformation()
291 pInfo->uFreeSpace = __OSL_STATFS_BLKSIZ(sfs); in osl_psz_getVolumeInformation()
294 pInfo->uFreeSpace *= (sal_uInt64)(sfs.f_bfree); in osl_psz_getVolumeInformation()
296 pInfo->uFreeSpace *= (sal_uInt64)(sfs.f_bavail); in osl_psz_getVolumeInformation()
338 __OSL_STATFS_TYPENAME(sfs), in osl_psz_getVolumeInformation()
339 rtl_str_getLength(__OSL_STATFS_TYPENAME(sfs)), in osl_psz_getVolumeInformation()