Lines Matching refs:events
445 self->ufds[i].events = (short)(unsigned short)PyLong_AsLong(value);
459 an optional bitmask describing the type of events to check for
501 a bitmask describing the type of events to check for
589 Returns a list containing any descriptors that have events or errors to
811 unsigned short events, int remove)
818 self->fds[self->n_fds].events = POLLREMOVE;
827 self->fds[self->n_fds].events = (signed short)events;
844 an optional bitmask describing the type of events to check for
865 an optional bitmask describing the type of events to check for
896 self->fds[self->n_fds].events = POLLREMOVE;
915 Returns a list containing any descriptors that have events or errors to
1168 polling them for I/O events.
1186 polling them for I/O events.
1314 The expected number of events to be registered. It must be positive,
1424 pyepoll_internal_ctl(int epfd, int op, int fd, unsigned int events)
1435 ev.events = events;
1524 the maximum number of events returned; -1 means no limit
1526 Wait for events on the epoll file descriptor.
1528 Returns a list containing any descriptors that have events to report,
1529 as a list of (fd, events) 2-tuples.
1629 etuple = Py_BuildValue("iI", evs[i].data.fd, evs[i].events);
1691 the maximum number of monitored events.");
2096 The maximum number of events that the kernel will return.