Lines Matching refs:group
1 //! Unix user, group, and process identifiers.
17 /// The raw integer value of a Unix group ID.
31 /// `gid_t`—A Unix group ID.
79 /// A `Gid` corresponding to the root group (gid 0).
86 /// `raw` must be the value of a valid Unix group ID.
98 /// Test whether this gid represents the root group (gid 0).
214 /// `getgid()`—Returns the process' real group ID.
228 /// `getegid()`—Returns the process' effective group ID.
270 /// `getpgid(pid)`—Returns the process group ID of the given process.
283 /// `getpgrp()`—Returns the process' group ID.
312 // no change to the owner/group ID.
313 pub(crate) fn translate_fchown_args(owner: Option<Uid>, group: Option<Gid>) -> (u32, u32) {
319 let gr = match group {