Home
last modified time | relevance | path

Searched refs:lchown (Results 1 – 3 of 3) sorted by relevance

/DragonOS/user/apps/test-chown/src/
H A Dmain.rs3 chown, fchown, fchownat, getgrnam, getpwnam, gid_t, lchown, mount, uid_t, umount, AT_FDCWD,
63 let result = unsafe { lchown(c_symlink.as_ptr(), new_uid, new_gid) }; in test_lchown()
/DragonOS/kernel/src/syscall/
H A Dmod.rs1016 Self::lchown(pathname, uid, gid) in handle()
/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs1658 pub fn lchown(pathname: *const u8, uid: usize, gid: usize) -> Result<usize, SystemError> { in lchown() method