Symbol: inotify_add_watch
crypto/krb5/src/util/verto/ev.c
4219
w->wd = inotify_add_watch (fs_fd, w->path,
crypto/krb5/src/util/verto/ev.c
4275
w->wd = inotify_add_watch (fs_fd, path, mask);
share/examples/inotify/inotify.c
105
wd = inotify_add_watch(ifd, argv[i], IN_ALL_EVENTS);
sys/sys/inotify.h
151
int inotify_add_watch(int fd, const char *pathname, __uint32_t mask);
tests/sys/capsicum/linux.cc
552
EXPECT_NOTCAPABLE(inotify_add_watch(cap_fd_rw, TmpFile("cap_inotify"), IN_ACCESS|IN_MODIFY));
tests/sys/capsicum/linux.cc
553
int wd = inotify_add_watch(i_fd, TmpFile("cap_inotify"), IN_ACCESS|IN_MODIFY);
tests/sys/kern/inotify_test.c
199
wd = inotify_add_watch(ifd, path, events);
tests/sys/kern/inotify_test.c
215
wd = inotify_add_watch(ifd, path, events);
tests/sys/kern/inotify_test.c
244
wd = inotify_add_watch(ifd, ".", IN_DELETE_SELF);
tests/sys/kern/inotify_test.c
307
wd1 = inotify_add_watch(ifd, path, IN_MODIFY | IN_MASK_CREATE);
tests/sys/kern/inotify_test.c
310
wd1 = inotify_add_watch(ifd, path, IN_MODIFY | IN_MASK_ADD |
tests/sys/kern/inotify_test.c
314
wd1 = inotify_add_watch(ifd, path, IN_MODIFY);
tests/sys/kern/inotify_test.c
350
wd = inotify_add_watch(ifd, "./mnt", mask);
tests/sys/kern/inotify_test.c
370
wd = inotify_add_watch(ifd, path, mask);
tests/sys/kern/inotify_test.c
428
wd = inotify_add_watch(ifd, "./mnt/file", IN_DELETE_SELF);
tests/sys/kern/inotify_test.c
487
wd = inotify_add_watch(ifd, "./mnt/file1", IN_DELETE_SELF);
tests/sys/kern/inotify_test.c
744
wd1 = inotify_add_watch(ifd1, root, IN_MODIFY);
tests/sys/kern/inotify_test.c
816
wd2 = inotify_add_watch(ifd, path, IN_DELETE | IN_DELETE_SELF);
tests/sys/kern/inotify_test.c
911
wd2 = inotify_add_watch(ifd, subdir1, IN_MOVE);
tests/sys/kern/inotify_test.c
983
wd = inotify_add_watch(ifd, "./root/dir", IN_OPEN);