Searched refs:translate_fchown_args (Results 1 – 4 of 4) sorted by relevance
/third_party/rust/crates/rustix/src/process/ |
D | mod.rs | 85 pub(crate) use id::translate_fchown_args;
|
D | id.rs | 313 pub(crate) fn translate_fchown_args(owner: Option<Uid>, group: Option<Gid>) -> (u32, u32) { in translate_fchown_args() function
|
/third_party/rust/crates/rustix/src/backend/libc/fs/ |
D | syscalls.rs | 742 let (ow, gr) = crate::process::translate_fchown_args(owner, group); in chownat() 940 let (ow, gr) = crate::process::translate_fchown_args(owner, group); in fchown() 948 let (ow, gr) = crate::process::translate_fchown_args(owner, group); in fchown()
|
/third_party/rust/crates/rustix/src/backend/linux_raw/fs/ |
D | syscalls.rs | 157 let (ow, gr) = crate::process::translate_fchown_args(owner, group); in chownat() 172 let (ow, gr) = crate::process::translate_fchown_args(owner, group); in fchown()
|