Home
last modified time | relevance | path

Searched refs:Gid (Results 1 – 7 of 7) sorted by relevance

/external/rust/crates/nix/src/
Dunistd.rs86 pub struct Gid(gid_t); struct
88 impl Gid { implementation
91 Gid(gid) in from_raw()
110 impl From<Gid> for gid_t {
111 fn from(gid: Gid) -> Self { in from()
116 impl fmt::Display for Gid { implementation
627 fn chown_raw_ids(owner: Option<Uid>, group: Option<Gid>) -> (libc::uid_t, libc::gid_t) { in chown_raw_ids()
646 pub fn chown<P: ?Sized + NixPath>(path: &P, owner: Option<Uid>, group: Option<Gid>) -> Result<()> { in chown()
663 pub fn fchown(fd: RawFd, owner: Option<Uid>, group: Option<Gid>) -> Result<()> { in fchown()
702 group: Option<Gid>, in fchownat() argument
[all …]
/external/crosvm/sys_util/src/
Dlib.rs111 pub type Gid = libc::gid_t; typedef
183 pub fn getegid() -> Gid { in getegid()
190 pub fn chown(path: &CStr, uid: Uid, gid: Gid) -> Result<()> { in chown()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DTarWriter.cpp39 char Gid[8]; member
/external/llvm-project/llvm/lib/Support/
DTarWriter.cpp39 char Gid[8]; member
/external/llvm-project/llvm/unittests/Support/
DTarWriterTest.cpp25 char Gid[8]; member
/external/rust/crates/nix/test/
Dtest_unistd.rs215 let groups = [Gid::from_raw(123), Gid::from_raw(456)]; in test_setgroups()
244 let group = Gid::from_raw(123); in test_initgroups()
/external/rust/crates/nix/
DCHANGELOG.md275 `ForkResult::is_child`, `ForkResult::is_parent`, `Gid::as_raw`,
739 - Introduced wrapper types for `gid_t`, `pid_t`, and `uid_t` as `Gid`, `Pid`, and `Uid`