Lines Matching defs:fds
769 struct pollfd *fds;
788 n = _Py_write(self->fd_devpoll, self->fds, size);
817 self->fds[self->n_fds].fd = fd;
818 self->fds[self->n_fds].events = POLLREMOVE;
826 self->fds[self->n_fds].fd = fd;
827 self->fds[self->n_fds].events = (signed short)events;
895 self->fds[self->n_fds].fd = fd;
896 self->fds[self->n_fds].events = POLLREMOVE;
957 dvp.dp_fds = self->fds;
1002 num1 = PyLong_FromLong(self->fds[i].fd);
1003 num2 = PyLong_FromLong(self->fds[i].revents);
1094 struct pollfd *fds;
1099 ** fds, the kernel will give an error, so
1113 fds = PyMem_NEW(struct pollfd, limit.rlim_cur);
1114 if (fds == NULL) {
1123 PyMem_Free(fds);
1129 self->fds = fds;
1139 PyMem_Free(self->fds);