Home
last modified time | relevance | path

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

/DragonOS/kernel/src/filesystem/vfs/
H A Dsyscall.rs1592 pub fn access(pathname: *const u8, mode: u32) -> Result<usize, SystemError> { in access()
1595 pathname, in access()
1603 pathname: *const u8, in faccessat2()
1609 pathname, in faccessat2()
1615 pub fn chmod(pathname: *const u8, mode: u32) -> Result<usize, SystemError> { in chmod()
1618 pathname, in chmod()
1623 pub fn fchmodat(dirfd: i32, pathname: *const u8, mode: u32) -> Result<usize, SystemError> { in fchmodat()
1626 pathname, in fchmodat()
1645 pub fn chown(pathname: *const u8, uid: usize, gid: usize) -> Result<usize, SystemError> { in chown()
1646 let pathname = user_access::check_and_clone_cstr(pathname, Some(MAX_PATHLEN))? in chown() localVariable
[all …]
H A Dopen.rs248 pathname: Option<String>, in do_utimensat()
255 let inode = match pathname {
/DragonOS/kernel/src/syscall/
H A Dmod.rs962 let pathname = args[0] as *const u8; in handle() localVariable
964 Self::access(pathname, mode) in handle()
969 let pathname = args[1] as *const u8; in handle() localVariable
971 Self::faccessat2(dirfd, pathname, mode, 0) in handle()
976 let pathname = args[1] as *const u8; in handle() localVariable
979 Self::faccessat2(dirfd, pathname, mode, flags) in handle()
1006 let pathname = args[0] as *const u8; in handle() localVariable
1009 Self::chown(pathname, uid, gid) in handle()
1013 let pathname = args[0] as *const u8; in handle() localVariable
1016 Self::lchown(pathname, uid, gid) in handle()
[all …]
/DragonOS/kernel/src/include/bindings/
H A Dlinux_bpf.rs594 pub pathname: __u64, field