Lines Matching refs:events
83 ctx->fds[index].events = 0;
87 old_events = ctx->fds[index].events;
89 ctx->fds[index].events |= IO_POLL_INPUT;
91 ctx->fds[index].events |= IO_POLL_OUTPUT;
93 ctx->fds[index].events |= IO_POLL_ERROR;
94 i_assert(ctx->fds[index].events != old_events);
124 ctx->fds[index].events &= ~(POLLIN|POLLPRI);
128 ctx->fds[index].events &= ~POLLOUT;
132 if ((ctx->fds[index].events & (POLLIN|POLLOUT)) == 0) {
172 /* no I/O events */
185 pollfd->events = 0;