Lines Matching refs:timeout_obj
37 PyObject *xlist, PyObject *timeout_obj);
46 PyObject *timeout_obj = Py_None; in select_select() local
57 timeout_obj = args[3]; in select_select()
59 return_value = select_select_impl(module, rlist, wlist, xlist, timeout_obj); in select_select()
203 select_poll_poll_impl(pollObject *self, PyObject *timeout_obj);
209 PyObject *timeout_obj = Py_None; in select_poll_poll() local
217 timeout_obj = args[0]; in select_poll_poll()
219 return_value = select_poll_poll_impl(self, timeout_obj); in select_poll_poll()
373 select_devpoll_poll_impl(devpollObject *self, PyObject *timeout_obj);
379 PyObject *timeout_obj = Py_None; in select_devpoll_poll() local
387 timeout_obj = args[0]; in select_devpoll_poll()
389 return_value = select_devpoll_poll_impl(self, timeout_obj); in select_devpoll_poll()
801 select_epoll_poll_impl(pyEpoll_Object *self, PyObject *timeout_obj,
812 PyObject *timeout_obj = Py_None; in select_epoll_poll() local
823 timeout_obj = args[0]; in select_epoll_poll()
833 return_value = select_epoll_poll_impl(self, timeout_obj, maxevents); in select_epoll_poll()