Home | History | Annotate | Download | only in Modules

Lines Matching refs:pfd

883 pyepoll_internal_ctl(int epfd, int op, PyObject *pfd, unsigned int events)

892 fd = PyObject_AsFileDescriptor(pfd);
934 PyObject *pfd;
939 &pfd, &events)) {
943 return pyepoll_internal_ctl(self->epfd, EPOLL_CTL_ADD, pfd, events);
959 PyObject *pfd;
964 &pfd, &events)) {
968 return pyepoll_internal_ctl(self->epfd, EPOLL_CTL_MOD, pfd, events);
980 PyObject *pfd;
984 &pfd)) {
988 return pyepoll_internal_ctl(self->epfd, EPOLL_CTL_DEL, pfd, 0);
1297 PyObject *pfd;
1305 &pfd, &(self->e.filter), &(self->e.flags),
1310 if (PyLong_Check(pfd)
1312 && PyLong_AsUnsignedLong(pfd) <= UINT_MAX
1315 self->e.ident = IDENT_AsType(pfd);
1318 self->e.ident = PyObject_AsFileDescriptor(pfd);