Lines Matching refs:timeout_obj
37 PyObject *xlist, PyObject *timeout_obj);
46 PyObject *timeout_obj = Py_None;
57 timeout_obj = args[3];
59 return_value = select_select_impl(module, rlist, wlist, xlist, timeout_obj);
207 select_poll_poll_impl(pollObject *self, PyObject *timeout_obj);
213 PyObject *timeout_obj = Py_None;
221 timeout_obj = args[0];
223 return_value = select_poll_poll_impl(self, timeout_obj);
381 select_devpoll_poll_impl(devpollObject *self, PyObject *timeout_obj);
387 PyObject *timeout_obj = Py_None;
395 timeout_obj = args[0];
397 return_value = select_devpoll_poll_impl(self, timeout_obj);
809 select_epoll_poll_impl(pyEpoll_Object *self, PyObject *timeout_obj,
820 PyObject *timeout_obj = Py_None;
831 timeout_obj = args[0];
841 return_value = select_epoll_poll_impl(self, timeout_obj, maxevents);