Lines Matching refs:inev

1816 inotify_check_files (bool *to_clear, union __inev *inev)  in inotify_check_files()  argument
1827 if (finfo->inotify_descr[TRACED_FILE] == inev->i.wd in inotify_check_files()
1828 && ((inev->i.mask & IN_MOVE_SELF) in inotify_check_files()
1829 || (inev->i.mask & IN_DELETE_SELF) in inotify_check_files()
1830 || (inev->i.mask & IN_IGNORED))) in inotify_check_files()
1833 bool moved = (inev->i.mask & IN_MOVE_SELF) != 0; in inotify_check_files()
1848 ret = inotify_rm_watch (inotify_fd, inev->i.wd); in inotify_check_files()
1861 if (finfo->inotify_descr[TRACED_FILE] == inev->i.wd in inotify_check_files()
1862 && inev->i.mask & IN_CLOSE_WRITE) in inotify_check_files()
1874 if (finfo->inotify_descr[TRACED_DIR] == inev->i.wd in inotify_check_files()
1875 && ((inev->i.mask & IN_DELETE_SELF) in inotify_check_files()
1876 || (inev->i.mask & IN_MOVE_SELF) in inotify_check_files()
1877 || (inev->i.mask & IN_IGNORED))) in inotify_check_files()
1879 bool moved = (inev->i.mask & IN_MOVE_SELF) != 0; in inotify_check_files()
1886 inotify_rm_watch (inotify_fd, inev->i.wd); in inotify_check_files()
1906 if (finfo->inotify_descr[TRACED_DIR] == inev->i.wd in inotify_check_files()
1907 && ((inev->i.mask & IN_MOVED_TO) in inotify_check_files()
1908 || (inev->i.mask & IN_CREATE)) in inotify_check_files()
1909 && strcmp (inev->i.name, finfo->sfname) == 0) in inotify_check_files()
1917 inev->i.mask & IN_CREATE ? "created" : "moved into place"); in inotify_check_files()
1968 union __inev inev; in handle_inotify_events() local
1976 &inev.buf, in handle_inotify_events()
1977 sizeof (inev))); in handle_inotify_events()
1988 char *eptr = &inev.buf[0]; in handle_inotify_events()
1993 inotify_check_files (to_clear, &inev); in handle_inotify_events()
1994 count = sizeof (struct inotify_event) + inev.i.len; in handle_inotify_events()
1998 memcpy (&inev, eptr, nb); in handle_inotify_events()