Lines Matching refs:wd
17 //! let wd = instance.add_watch("test", AddWatchFlags::IN_ALL_EVENTS).unwrap();
114 wd: i32,
125 pub wd: WatchDescriptor,
163 Errno::result(res).map(|wd| WatchDescriptor { wd })
172 pub fn rm_watch(self, wd: WatchDescriptor) -> Result<()> {
175 let arg = wd.wd;
177 let arg = wd.wd as u32;
225 wd: WatchDescriptor { wd: event.wd },