Home
last modified time | relevance | path

Searched refs:chown (Results 1 – 7 of 7) sorted by relevance

/DragonOS/user/dadk/config/
H A Dtest_chown_0_1_0.dadk2 "name": "test-chown",
4 "description": "chown系列系统调用",
9 "path": "apps/test-chown"
/DragonOS/user/apps/test-chown/
H A DREADME.md1 # 一个简单的用于测试chown系列系统调用的程序
3 ### 由于symlink系统调用还未实现,目前只测试chown和fchown
H A DCargo.toml2 name = "test-chown"
5 description = "测试chown系列系统调用"
/DragonOS/user/apps/test-chown/src/
H A Dmain.rs3 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 Dbootstrap.sh349 sudo chown $USR /dev/kvm
/DragonOS/kernel/src/syscall/
H A Dmod.rs1009 Self::chown(pathname, uid, gid) in handle()
/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs1645 pub fn chown(pathname: *const u8, uid: usize, gid: usize) -> Result<usize, SystemError> { in chown() method