Lines Matching defs:InotifyFD
122 bool WaitForInitialSync, int InotifyFD, int InotifyWD,
129 inotify_rm_watch(InotifyFD, InotifyWD);
130 llvm::sys::RetryAfterSignal(-1, close, InotifyFD);
136 int InotifyFD = -1;
203 EventSpec.data.fd = InotifyFD;
204 if (epoll_ctl(EpollFD, EPOLL_CTL_ADD, InotifyFD, &EventSpec) == -1) {
238 ssize_t NumRead = llvm::sys::RetryAfterSignal(-1, read, InotifyFD, Buf,
300 bool WaitForInitialSync, int InotifyFD, int InotifyWD,
302 : WatchedDirPath(WatchedDirPath), InotifyFD(InotifyFD),
333 const int InotifyFD = inotify_init1(IN_CLOEXEC);
334 if (InotifyFD == -1)
339 InotifyFD, Path.str().c_str(),
357 Path, Receiver, WaitForInitialSync, InotifyFD, InotifyWD,