Symbol: unmount
lib/libc/tests/gen/fts_misc_test.c
576
(void)unmount("dir/mnt", 0);
sbin/bectl/bectl_jail.c
203
if (unmount(mntbuf[i].f_mntonname, 0) != 0) {
sbin/init/init.c
407
error = unmount(_PATH_REROOT, MNT_FORCE);
sbin/umount/umount.c
190
ret = unmount(*argv, MNT_FORCE);
sbin/umount/umount.c
412
if (unmount(fsidbuf, fflag | MNT_BYFSID) != 0) {
sbin/umount/umount.c
424
if (unmount(sfs->f_mntonname, fflag) != 0) {
stand/common/misc.c
185
unmount(ev->ev_value, 0);
stand/libsa/stand.h
318
extern int unmount(const char *dev, int flags);
sys/kern/vfs_inotify.c
617
bool allocfail, delete, notify, oneshot, unmount;
sys/kern/vfs_inotify.c
626
unmount = (event & IN_UNMOUNT) != 0;
sys/kern/vfs_inotify.c
627
if (!notify && !delete && !unmount)
sys/kern/vfs_inotify.c
631
if (notify || unmount) {
sys/kern/vfs_inotify.c
646
if (oneshot || delete || unmount) {
sys/sys/mount.h
1256
int unmount(const char *, int);
tests/sys/capsicum/syscalls.h
9
#define umount2(T, F) unmount(T, F)
tests/sys/fs/fusefs/destroy.cc
251
m_mock->unmount();
tests/sys/fs/fusefs/dev_fuse_poll.cc
96
m_mock->unmount();
tests/sys/fs/fusefs/lookup.cc
273
ASSERT_NE(0, unmount("mountpoint", 0));
tests/sys/fs/fusefs/lookup.cc
658
ASSERT_NE(0, unmount("mountpoint", 0));
tests/sys/fs/fusefs/mockfs.cc
1094
::unmount("mountpoint", 0);
tests/sys/fs/fusefs/mockfs.cc
560
::unmount("mountpoint", MNT_FORCE);
tests/sys/fs/fusefs/mockfs.hh
453
void unmount();
tests/sys/fs/fusefs/notify.cc
407
m_mock->unmount();
tests/sys/fs/fusefs/pre-init.cc
159
(void) unmount("mountpoint", 0);
tests/sys/fs/fusefs/pre-init.cc
70
r = unmount("mountpoint", 0);
tests/sys/kern/inotify_test.c
1005
(void)unmount("./root", MNT_FORCE);
tests/sys/kern/inotify_test.c
391
error = unmount("./mnt", 0);
tests/sys/kern/inotify_test.c
443
error = unmount("./mnt", 0);
tests/sys/kern/inotify_test.c
501
error = unmount("./mnt", 0);
tests/sys/kern/inotify_test.c
992
error = unmount("./root", 0);
tests/sys/kern/inotify_test.c
994
error = unmount("./root", MNT_FORCE);
tests/sys/kern/jail_lookup_root.c
116
error = unmount("./root/b", 0);
tools/regression/security/cap_test/cap_test_capmode.c
107
CHECK_CAPMODE(unmount, "/not_mounted", 0);
usr.sbin/autofs/automount.c
76
error = unmount(fsid_str, flags);
usr.sbin/autofs/autounmountd.c
161
error = unmount(fsid_str, MNT_NONBUSY | MNT_BYFSID);