Lines Matching refs:nix
2 use nix::Error;
4 use nix::errno::*;
6 use nix::fcntl::{open, OFlag, readlink};
8 use nix::fcntl::{openat, readlinkat, renameat};
10 use nix::sys::stat::Mode;
12 use nix::unistd::{close, read};
91 use nix::fcntl::*;
92 use nix::sys::stat::fstat;
93 use nix::sys::uio::IoVec;
94 use nix::unistd::{close, pipe, read, write};
241 let statfs = nix::sys::statfs::fstatfs(&tmp).unwrap(); in test_ofd_write_lock()
242 if statfs.filesystem_type() == nix::sys::statfs::OVERLAYFS_SUPER_MAGIC { in test_ofd_write_lock()
283 let statfs = nix::sys::statfs::fstatfs(&tmp).unwrap(); in test_ofd_read_lock()
284 if statfs.filesystem_type() == nix::sys::statfs::OVERLAYFS_SUPER_MAGIC { in test_ofd_read_lock()
340 use nix::errno::Errno;
341 use nix::fcntl::*;
342 use nix::unistd::pipe;
372 use nix::errno::Errno;
373 use nix::fcntl::*;
374 use nix::unistd::pipe;
388 Err(nix::Error::Sys(Errno::EINVAL)) => { in success()
404 use nix::Error::Sys; in errno()