Home
last modified time | relevance | path

Searched refs:umount (Results 1 – 8 of 8) sorted by relevance

/DragonOS/user/apps/test-symlink/src/
H A Dmain.rs3 use libc::{mount, umount};
71 let result = unsafe { umount(path) }; in umount_test_ramfs()
/DragonOS/tools/
H A Dumount_virt_disk.sh17 umount -f ../bin/disk_mount/
/DragonOS/user/apps/test_ramfs/
H A Dmain.c101 if (umount("/SOME/RAMFS/some/another/just_another") == -1) { in main()
/DragonOS/user/apps/test-chown/src/
H A Dmain.rs3 chown, fchown, fchownat, getgrnam, getpwnam, gid_t, lchown, mount, uid_t, umount, AT_FDCWD,
148 let result = unsafe { umount(path) }; in umount_test_ramfs()
/DragonOS/kernel/src/filesystem/vfs/
H A Dmount.rs114 pub fn umount(&self) -> Result<Arc<MountFS>, SystemError> { in umount() method
471 let new_mount_fs = from.umount()?; in mount_from()
482 fn umount(&self) -> Result<Arc<MountFS>, SystemError> { in umount() method
486 return self.mount_fs.umount(); in umount()
H A Dcore.rs388 fs.umount()?; in do_umount2()
H A Dmod.rs453 fn umount(&self) -> Result<Arc<MountFS>, SystemError> { in umount() method
/DragonOS/kernel/src/filesystem/fat/
H A Dfs.rs906 pub fn umount(&mut self) -> Result<(), SystemError> { in umount() method
1217 let r = self.umount(); in drop()