Home
last modified time | relevance | path

Searched refs:sfb (Results 1 – 4 of 4) sorted by relevance

/freebsd/tools/diag/prtblknos/
H A Dmain.c50 struct statfs sfb; in main() local
61 if (statfs(filename, &sfb) != 0) in main()
64 xargv[1] = sfb.f_mntfromname; in main()
/freebsd/usr.sbin/lpr/lpd/
H A Drecvjob.c317 struct statfs sfb; in chksize() local
319 if (statfs(".", &sfb) < 0) { in chksize()
323 spacefree = sfb.f_bavail * (sfb.f_bsize / 512); in chksize()
/freebsd/usr.bin/quota/
H A Dquota.c482 struct statfs sfb; in getprivs() local
486 if (filename != NULL && statfs(filename, &sfb) != 0) in getprivs()
503 strcmp(sfb.f_mntonname, fst[i].f_mntonname) != 0) in getprivs()
/freebsd/lib/libutil/
H A Dquotafile.c70 struct statfs sfb; in hasquota() local
99 if (statfs(fs->fs_file, &sfb) != 0 || in hasquota()
100 strcmp(fs->fs_file, sfb.f_mntonname)) { in hasquota()