Lines Matching defs:statvfs
66 struct statvfs { struct
67 unsigned long f_bsize; /* file system block size */
68 unsigned long f_frsize; /* fundamental file system block size */
69 fsblkcnt_t f_blocks; /* total number of blocks on fs */
70 fsblkcnt_t f_bfree; /* total number of free blocks */
71 fsblkcnt_t f_bavail; /* total number of available blocks */
72 fsfilcnt_t f_files; /* total number of file serial num */
73 fsfilcnt_t f_ffree; /* total number of free file ser num */
74 fsfilcnt_t f_favail; /* total number of avail file ser num */
75 unsigned long f_fsid; /* file system ID */
76 unsigned long f_flag; /* bit mask of f_flag values */
77 unsigned long f_namemax; /* maximum filename length */
78 uid_t f_owner; /* user that mounted the filesystem */
79 unsigned int f_type; /* filesystem type */
81 __uint64_t f_syncreads; /* count of sync reads since mount */
82 __uint64_t f_syncwrites; /* count of sync writes since mount */
84 __uint64_t f_asyncreads; /* count of async reads since mount */
85 __uint64_t f_asyncwrites; /* count of async writes since mount */
109 int fstatvfs(int, struct statvfs *); argument