• Home
  • Raw
  • Download

Lines Matching refs:NixPath

6 use crate::{Error, Result, NixPath};
414 pub fn chdir<P: ?Sized + NixPath>(path: &P) -> Result<()> { in chdir()
465 pub fn mkdir<P: ?Sized + NixPath>(path: &P, mode: Mode) -> Result<()> { in mkdir()
506 pub fn mkfifo<P: ?Sized + NixPath>(path: &P, mode: Mode) -> Result<()> { in mkfifo()
528 pub fn mkfifoat<P: ?Sized + NixPath>(dirfd: Option<RawFd>, path: &P, mode: Mode) -> Result<()> { in mkfifoat()
546 pub fn symlinkat<P1: ?Sized + NixPath, P2: ?Sized + NixPath>( in symlinkat() argument
646 pub fn chown<P: ?Sized + NixPath>(path: &P, owner: Option<Uid>, group: Option<Gid>) -> Result<()> { in chown()
698 pub fn fchownat<P: ?Sized + NixPath>( in fchownat()
1100 pub fn truncate<P: ?Sized + NixPath>(path: &P, len: off_t) -> Result<()> { in truncate()
1154 pub fn linkat<P: ?Sized + NixPath>( in linkat()
1189 pub fn unlink<P: ?Sized + NixPath>(path: &P) -> Result<()> { in unlink()
1216 pub fn unlinkat<P: ?Sized + NixPath>( in unlinkat()
1237 pub fn chroot<P: ?Sized + NixPath>(path: &P) -> Result<()> { in chroot()
1710 use crate::{Result, NixPath};
1717 pub fn enable<P: ?Sized + NixPath>(filename: &P) -> Result<()> { in enable()
1758 pub fn mkstemp<P: ?Sized + NixPath>(template: &P) -> Result<(RawFd, PathBuf)> { in mkstemp()
1927 pub fn pathconf<P: ?Sized + NixPath>(path: &P, var: PathconfVar) -> Result<Option<c_long>> { in pathconf()
2444 use crate::{Result, NixPath};
2447 pub fn pivot_root<P1: ?Sized + NixPath, P2: ?Sized + NixPath>( in pivot_root() argument
2517 pub fn access<P: ?Sized + NixPath>(path: &P, amode: AccessFlags) -> Result<()> { in access()