Home
last modified time | relevance | path

Searched refs:Inotify (Results 1 – 4 of 4) sorted by relevance

/third_party/rust/crates/nix/src/sys/
Dinotify.rs105 pub struct Inotify { struct
137 impl Inotify { impl
143 pub fn init(flags: InitFlags) -> Result<Inotify> { in init() argument
146 res.map(|fd| Inotify { fd }) in init()
238 impl AsRawFd for Inotify { implementation
244 impl FromRawFd for Inotify { implementation
246 Inotify { fd } in from_raw_fd()
/third_party/rust/crates/nix/test/sys/
Dtest_inotify.rs2 use nix::sys::inotify::{AddWatchFlags, InitFlags, Inotify};
8 let instance = Inotify::init(InitFlags::IN_NONBLOCK).unwrap(); in test_inotify()
26 let instance = Inotify::init(InitFlags::IN_NONBLOCK).unwrap(); in test_inotify_multi_events()
/third_party/ltp/testcases/kernel/syscalls/inotify/
DREADME4 Inotify can be used to monitor individual files, or to monitor directories. $
/third_party/rust/crates/nix/
DCHANGELOG.md649 - Several `Inotify` methods now take `self` by value instead of by reference
669 - Fixed unaligned pointer read in `Inotify::read_events`.