Home | History | Annotate | Download | only in restorecond

Lines Matching refs:wd

31 	int wd;
82 ptr->wd = inotify_add_watch(fd, dir, IN_CREATE | IN_MOVED_TO);
83 if (ptr->wd == -1) {
102 printf("%d: Dir=%s, File=%s\n", ptr->wd, ptr->dir, file);
114 int watch_list_find(int wd, const char *file)
119 printf("%d: File=%s\n", wd, file);
121 if (ptr->wd == wd) {
152 inotify_rm_watch(fd, ptr->wd);
186 printf("wd=%d mask=%u cookie=%u len=%u\n",
187 event->wd, event->mask,
190 if (event->wd == master_wd)
193 switch (utmpwatcher_handle(fd, event->wd)) {
196 watch_list_find(event->wd, event->name);