Symbol: unmount
sbin/bectl/bectl_jail.c
203
if (unmount(mntbuf[i].f_mntonname, 0) != 0) {
sbin/init/init.c
396
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
316
extern int unmount(const char *dev, int flags);
sys/sys/mount.h
1215
int unmount(const char *, int);
tests/sys/capsicum/syscalls.h
9
#define umount2(T, F) unmount(T, F)
tests/sys/fs/fusefs/destroy.cc
237
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
1087
::unmount("mountpoint", 0);
tests/sys/fs/fusefs/mockfs.cc
561
::unmount("mountpoint", MNT_FORCE);
tests/sys/fs/fusefs/mockfs.hh
450
void unmount();
tests/sys/fs/fusefs/notify.cc
407
m_mock->unmount();
tests/sys/fs/fusefs/pre-init.cc
155
(void) unmount("mountpoint", 0);
tests/sys/fs/fusefs/pre-init.cc
70
r = unmount("mountpoint", 0);
tests/sys/kern/inotify_test.c
388
error = unmount("./mnt", 0);
tests/sys/kern/inotify_test.c
858
error = unmount("./root", 0);
tests/sys/kern/inotify_test.c
860
error = unmount("./root", MNT_FORCE);
tests/sys/kern/inotify_test.c
871
(void)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);