HomeSort by relevance Sort by last modified time
    Searched defs:inotify_fd (Results 1 - 3 of 3) sorted by null

  /external/ltp/testcases/kernel/syscalls/inotify/
inotify06.c 84 int inotify_fd, fd; local
102 inotify_fd = ltp_syscall(__NR_inotify_init1, O_NONBLOCK);
103 if (inotify_fd < 0)
113 myinotify_add_watch(inotify_fd, names[i], IN_MODIFY);
115 SAFE_CLOSE(cleanup, inotify_fd);
  /frameworks/base/libs/usb/tests/accessorytest/
hid.c 158 int inotify_fd = inotify_init(); local
159 inotify_add_watch(inotify_fd, "/dev", IN_DELETE | IN_CREATE);
167 int count = read(inotify_fd, event_buf, sizeof(event_buf));
194 close(inotify_fd);
  /hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/src/
IPACM_Main.cpp 144 int inotify_fd; local
149 inotify_fd = inotify_init();
150 if (inotify_fd < 0)
157 wd = inotify_add_watch(inotify_fd,
163 length = read(inotify_fd, buffer, INOTIFY_BUF_LEN);
216 (void)inotify_rm_watch(inotify_fd, wd);
217 (void)close(inotify_fd);
    [all...]

Completed in 247 milliseconds