Home
last modified time | relevance | path

Searched refs:timeout_obj (Results 1 - 12 of 12) sorted by relevance

/third_party/python/Modules/clinic/
H A Dselectmodule.c.h37 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()
207 select_poll_poll_impl(pollObject *self, PyObject *timeout_obj);
213 PyObject *timeout_obj = Py_None; in select_poll_poll() local
221 timeout_obj = args[0]; in select_poll_poll()
223 return_value = select_poll_poll_impl(self, timeout_obj); in select_poll_poll()
381 select_devpoll_poll_impl(devpollObject *self, PyObject *timeout_obj);
387 PyObject *timeout_obj in select_devpoll_poll() local
820 PyObject *timeout_obj = Py_None; select_epoll_poll() local
[all...]
H A D_queuemodule.c.h142 int block, PyObject *timeout_obj);
153 PyObject *timeout_obj = Py_None; in _queue_SimpleQueue_get() local
171 timeout_obj = args[1]; in _queue_SimpleQueue_get()
173 return_value = _queue_SimpleQueue_get_impl(self, cls, block, timeout_obj); in _queue_SimpleQueue_get()
H A Dsignalmodule.c.h530 PyObject *timeout_obj);
537 PyObject *timeout_obj; in signal_sigtimedwait() local
545 timeout_obj = args[1]; in signal_sigtimedwait()
546 return_value = signal_sigtimedwait_impl(module, sigset, timeout_obj); in signal_sigtimedwait()
/third_party/python/Modules/_multiprocessing/clinic/
H A Dsemaphore.c.h18 PyObject *timeout_obj);
29 PyObject *timeout_obj = Py_None; in _multiprocessing_SemLock_acquire() local
47 timeout_obj = args[1]; in _multiprocessing_SemLock_acquire()
49 return_value = _multiprocessing_SemLock_acquire_impl(self, blocking, timeout_obj); in _multiprocessing_SemLock_acquire()
92 PyObject *timeout_obj);
103 PyObject *timeout_obj = Py_None; in _multiprocessing_SemLock_acquire() local
121 timeout_obj = args[1]; in _multiprocessing_SemLock_acquire()
123 return_value = _multiprocessing_SemLock_acquire_impl(self, blocking, timeout_obj); in _multiprocessing_SemLock_acquire()
/third_party/python/Modules/_multiprocessing/
H A Dsemaphore.c83 timeout as timeout_obj: object = None
90 PyObject *timeout_obj) in _multiprocessing_SemLock_acquire_impl()
100 } else if (timeout_obj == Py_None) { in _multiprocessing_SemLock_acquire_impl()
103 timeout = PyFloat_AsDouble(timeout_obj); in _multiprocessing_SemLock_acquire_impl()
299 timeout as timeout_obj: object = None
306 PyObject *timeout_obj) in _multiprocessing_SemLock_acquire_impl()
317 int use_deadline = (timeout_obj != Py_None); in _multiprocessing_SemLock_acquire_impl()
319 double timeout = PyFloat_AsDouble(timeout_obj); in _multiprocessing_SemLock_acquire_impl()
89 _multiprocessing_SemLock_acquire_impl(SemLockObject *self, int blocking, PyObject *timeout_obj) _multiprocessing_SemLock_acquire_impl() argument
305 _multiprocessing_SemLock_acquire_impl(SemLockObject *self, int blocking, PyObject *timeout_obj) _multiprocessing_SemLock_acquire_impl() argument
/third_party/python/Modules/
H A D_queuemodule.c189 timeout as timeout_obj: object = None
205 int block, PyObject *timeout_obj) in _queue_SimpleQueue_get_impl()
218 else if (timeout_obj != Py_None) { in _queue_SimpleQueue_get_impl()
221 timeout_obj, _PyTime_ROUND_CEILING) < 0) { in _queue_SimpleQueue_get_impl()
204 _queue_SimpleQueue_get_impl(simplequeueobject *self, PyTypeObject *cls, int block, PyObject *timeout_obj) _queue_SimpleQueue_get_impl() argument
H A Dselectmodule.c228 timeout as timeout_obj: object = None
257 PyObject *xlist, PyObject *timeout_obj) in select_select_impl()
280 if (timeout_obj == Py_None) in select_select_impl()
283 if (_PyTime_FromSecondsObject(&timeout, timeout_obj, in select_select_impl()
582 timeout as timeout_obj: object = None
594 select_poll_poll_impl(pollObject *self, PyObject *timeout_obj) in select_poll_poll_impl() argument
603 if (timeout_obj != Py_None) { in select_poll_poll_impl()
604 if (_PyTime_FromMillisecondsObject(&timeout, timeout_obj, in select_poll_poll_impl()
908 timeout as timeout_obj: object = None
920 select_devpoll_poll_impl(devpollObject *self, PyObject *timeout_obj) in select_devpoll_poll_impl() argument
256 select_select_impl(PyObject *module, PyObject *rlist, PyObject *wlist, PyObject *xlist, PyObject *timeout_obj) select_select_impl() argument
1533 select_epoll_poll_impl(pyEpoll_Object *self, PyObject *timeout_obj, int maxevents) select_epoll_poll_impl() argument
[all...]
H A Dfaulthandler.c707 PyObject *timeout_obj; in faulthandler_dump_traceback_later() local
719 &timeout_obj, &repeat, &file, &exit)) in faulthandler_dump_traceback_later()
722 if (_PyTime_FromSecondsObject(&timeout, timeout_obj, in faulthandler_dump_traceback_later()
H A D_threadmodule.c133 PyObject *timeout_obj = NULL; in lock_acquire_parse_args() local
139 &blocking, &timeout_obj)) in lock_acquire_parse_args()
142 if (timeout_obj in lock_acquire_parse_args()
144 timeout_obj, _PyTime_ROUND_TIMEOUT) < 0) in lock_acquire_parse_args()
H A Dsignalmodule.c1243 timeout as timeout_obj: object
1253 PyObject *timeout_obj)
1258 timeout_obj, _PyTime_ROUND_CEILING) < 0)
1252 signal_sigtimedwait_impl(PyObject *module, sigset_t sigset, PyObject *timeout_obj) global() argument
H A Dtimemodule.c373 time_sleep(PyObject *self, PyObject *timeout_obj) argument
376 if (_PyTime_FromSecondsObject(&timeout, timeout_obj, _PyTime_ROUND_TIMEOUT))
H A Dsocketmodule.c2860 socket_parse_timeout(_PyTime_t *timeout, PyObject *timeout_obj) in socket_parse_timeout() argument
2870 if (timeout_obj == Py_None) { in socket_parse_timeout()
2876 timeout_obj, _PyTime_ROUND_TIMEOUT) < 0) in socket_parse_timeout()

Completed in 25 milliseconds