Home
last modified time | relevance | path

Searched refs:pollObject (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Modules/clinic/
Dselectmodule.c.h83 select_poll_register_impl(pollObject *self, int fd, unsigned short eventmask);
86 select_poll_register(pollObject *self, PyObject *const *args, Py_ssize_t nargs) in select_poll_register()
131 select_poll_modify_impl(pollObject *self, int fd, unsigned short eventmask);
134 select_poll_modify(pollObject *self, PyObject *const *args, Py_ssize_t nargs) in select_poll_modify()
169 select_poll_unregister_impl(pollObject *self, int fd);
172 select_poll_unregister(pollObject *self, PyObject *arg) in select_poll_unregister()
203 select_poll_poll_impl(pollObject *self, PyObject *timeout_obj);
206 select_poll_poll(pollObject *self, PyObject *const *args, Py_ssize_t nargs) in select_poll_poll()
/third_party/python/Modules/
Dselectmodule.c403 } pollObject; typedef
410 update_ufd_array(pollObject *self) in update_ufd_array()
450 select_poll_register_impl(pollObject *self, int fd, unsigned short eventmask) in select_poll_register_impl()
492 select_poll_modify_impl(pollObject *self, int fd, unsigned short eventmask) in select_poll_modify_impl()
540 select_poll_unregister_impl(pollObject *self, int fd) in select_poll_unregister_impl()
576 select_poll_poll_impl(pollObject *self, PyObject *timeout_obj) in select_poll_poll_impl()
711 static pollObject *
714 pollObject *self; in newPollObject()
715 self = PyObject_New(pollObject, get_select_state(module)->poll_Type); in newPollObject()
732 poll_dealloc(pollObject *self) in poll_dealloc()
[all …]