Searched refs:chown (Results 1 – 7 of 7) sorted by relevance
/DragonOS/user/dadk/config/ |
H A D | test_chown_0_1_0.dadk | 2 "name": "test-chown", 4 "description": "chown系列系统调用", 9 "path": "apps/test-chown"
|
/DragonOS/user/apps/test-chown/ |
H A D | README.md | 1 # 一个简单的用于测试chown系列系统调用的程序 3 ### 由于symlink系统调用还未实现,目前只测试chown和fchown
|
H A D | Cargo.toml | 2 name = "test-chown" 5 description = "测试chown系列系统调用"
|
/DragonOS/user/apps/test-chown/src/ |
H A D | main.rs | 3 chown, fchown, fchownat, getgrnam, getpwnam, gid_t, lchown, mount, uid_t, umount, AT_FDCWD, 43 let result = unsafe { chown(c_filename.as_ptr(), new_uid, new_gid) }; in test_chown()
|
/DragonOS/tools/ |
H A D | bootstrap.sh | 349 sudo chown $USR /dev/kvm
|
/DragonOS/kernel/src/syscall/ |
H A D | mod.rs | 1009 Self::chown(pathname, uid, gid) in handle()
|
/DragonOS/kernel/src/filesystem/vfs/ |
H A D | syscall.rs | 1645 pub fn chown(pathname: *const u8, uid: usize, gid: usize) -> Result<usize, SystemError> { in chown() method
|