Home
last modified time | relevance | path

Searched refs:fstype (Results 1 – 4 of 4) sorted by relevance

/DragonOS/user/apps/test-mount/src/
H A Dmain.rs17 let fstype = b"ramfs\0".as_ptr() as *const c_char; in main() localVariable
20 let result = unsafe { mount(source, target, fstype, flags, data) }; in main()
27 let result = unsafe { mount(source, target, fstype, flags, data) }; in main()
/DragonOS/user/apps/test-symlink/src/
H A Dmain.rs54 let fstype = b"ramfs\0".as_ptr() as *const c_char; in mount_test_ramfs() localVariable
58 let result = unsafe { mount(source, target, fstype, flags, data) }; in mount_test_ramfs()
/DragonOS/user/apps/test-chown/src/
H A Dmain.rs131 let fstype = b"ramfs\0".as_ptr() as *const c_char; in mount_test_ramfs() localVariable
135 let result = unsafe { mount(source, target, fstype, flags, data) }; in mount_test_ramfs()
/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs1719 let fstype = producefs!(FSMAKER, fstype_str, data)?; in mount() localVariable
1721 Vcore::do_mount(fstype, &target)?; in mount()