Lines Matching defs:inotify_fd
25 int inotify_fd;
44 ret = read(ctx->inotify_fd, event_buf, sizeof(event_buf));
102 wd = inotify_add_watch(ctx->inotify_fd, path,
123 ctx->event_io = io_add(ctx->inotify_fd, IO_READ,
142 if (inotify_rm_watch(ctx->inotify_fd, io->fd) < 0 &&
177 ctx->inotify_fd = inotify_init();
178 if (ctx->inotify_fd == -1) {
185 fd_close_on_exec(ctx->inotify_fd, TRUE);
186 fd_set_nonblock(ctx->inotify_fd, TRUE);
207 i_close_fd(&ctx->inotify_fd);
218 if (ctx == NULL || ctx->inotify_fd == -1)
232 fd = ctx->inotify_fd;
233 ctx->inotify_fd = new_inotify_fd;