Lines Matching defs:fstatfs
67 /// See [the `fstatfs` man page] for more information.
69 /// [the `fstatfs` man page]: https://man7.org/linux/man-pages/man2/fstatfs.2.html#DESCRIPTION
75 /// See [the `fstatfs` man page] for more information.
77 /// [the `fstatfs` man page]: https://man7.org/linux/man-pages/man2/fstatfs.2.html#DESCRIPTION
162 /// `fstatfs(fd)`—Queries filesystem statistics for an open file or directory.
170 /// [Linux]: https://man7.org/linux/man-pages/man2/fstatfs.2.html
180 pub fn fstatfs<Fd: AsFd>(fd: Fd) -> io::Result<StatFs> {
181 backend::fs::syscalls::fstatfs(fd.as_fd())
187 /// Compared to [`fstatfs`], this function often provides less information,