Home
last modified time | relevance | path

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

/DragonOS/user/apps/test-chown/
H A DREADME.md3 ### 由于symlink系统调用还未实现,目前只测试chown和fchown
/DragonOS/user/apps/test-chown/src/
H A Dmain.rs3 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 Dmod.rs1002 Self::fchown(dirfd, uid, gid) in handle()
/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs1686 pub fn fchown(fd: i32, uid: usize, gid: usize) -> Result<usize, SystemError> { in fchown() method