Lines Matching defs:access
502 /// Creates new directory `path` with access rights `mode`. (see [mkdir(2)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/mkdir.html))
537 /// Creates new fifo special file (named pipe) with path `path` and access rights `mode`.
576 /// Creates new fifo special file (named pipe) with path `path` and access rights `mode`.
1624 /// Calculate the supplementary group access list.
1687 /// Initialize the supplementary group access list.
2887 /// Options for access()
2905 /// See [access(2)](https://pubs.opengroup.org/onlinepubs/9699919799/functions/access.html)
2906 pub fn access<P: ?Sized + NixPath>(path: &P, amode: AccessFlags) -> Result<()> {
2909 libc::access(cstr.as_ptr(), amode.bits)