Searched refs:fchown (Results 1 – 4 of 4) sorted by relevance
/DragonOS/user/apps/test-chown/ |
H A D | README.md | 3 ### 由于symlink系统调用还未实现,目前只测试chown和fchown
|
/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, 53 let result = unsafe { fchown(fd, new_uid, new_gid) }; in test_fchown()
|
/DragonOS/kernel/src/syscall/ |
H A D | mod.rs | 1002 Self::fchown(dirfd, uid, gid) in handle()
|
/DragonOS/kernel/src/filesystem/vfs/ |
H A D | syscall.rs | 1686 pub fn fchown(fd: i32, uid: usize, gid: usize) -> Result<usize, SystemError> { in fchown() method
|