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()
202 select_poll_poll_impl(pollObject *self, PyObject *timeout_obj);
208 PyObject *timeout_obj = Py_None; in select_poll_poll() local
216 timeout_obj = args[0]; in select_poll_poll()
218 return_value = select_poll_poll_impl(self, timeout_obj); in select_poll_poll()
370 select_devpoll_poll_impl(devpollObject *self, PyObject *timeout_obj);
376 PyObject *timeout_obj = Py_None; in select_devpoll_poll() local
384 timeout_obj = args[0]; in select_devpoll_poll()
386 return_value = select_devpoll_poll_impl(self, timeout_obj); in select_devpoll_poll()
822 select_epoll_poll_impl(pyEpoll_Object *self, PyObject *timeout_obj,
833 PyObject *timeout_obj = Py_None; in select_epoll_poll() local
844 timeout_obj = args[0]; in select_epoll_poll()
859 return_value = select_epoll_poll_impl(self, timeout_obj, maxevents); in select_epoll_poll()