Lines Matching refs:mount
1 //! Linux `mount`.
8 /// `mount(source, target, filesystemtype, mountflags, data)`
13 /// [Linux]: https://man7.org/linux/man-pages/man2/mount.2.html
15 pub fn mount<Source: path::Arg, Target: path::Arg, Fs: path::Arg, Data: path::Arg>(
26 backend::fs::syscalls::mount(
39 /// `mount(null, target, null, MS_REMOUNT | mountflags, data)`
44 /// [Linux]: https://man7.org/linux/man-pages/man2/mount.2.html
53 backend::fs::syscalls::mount(
64 /// `mount(source, target, null, MS_BIND, null)`
69 /// [Linux]: https://man7.org/linux/man-pages/man2/mount.2.html
77 backend::fs::syscalls::mount(
88 /// `mount(source, target, null, MS_BIND | MS_REC, null)`
93 /// [Linux]: https://man7.org/linux/man-pages/man2/mount.2.html
101 backend::fs::syscalls::mount(
112 /// `mount(null, target, null, mountflags, null)`
117 /// [Linux]: https://man7.org/linux/man-pages/man2/mount.2.html
124 backend::fs::syscalls::mount(None, target, None, MountFlagsArg(flags.bits()), None)
128 /// `mount(source, target, null, MS_MOVE, null)`
133 /// [Linux]: https://man7.org/linux/man-pages/man2/mount.2.html
141 backend::fs::syscalls::mount(