Home
last modified time | relevance | path

Searched refs:timeout_obj (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Modules/clinic/
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()
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
[all …]
Dsignalmodule.c.h529 PyObject *timeout_obj);
536 PyObject *timeout_obj; in signal_sigtimedwait() local
544 timeout_obj = args[1]; in signal_sigtimedwait()
545 return_value = signal_sigtimedwait_impl(module, sigset, timeout_obj); in signal_sigtimedwait()
/third_party/python/Modules/_multiprocessing/clinic/
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/
Dsemaphore.c88 PyObject *timeout_obj) in _multiprocessing_SemLock_acquire_impl() argument
98 } else if (timeout_obj == Py_None) { in _multiprocessing_SemLock_acquire_impl()
101 timeout = PyFloat_AsDouble(timeout_obj); in _multiprocessing_SemLock_acquire_impl()
304 PyObject *timeout_obj) in _multiprocessing_SemLock_acquire_impl() argument
315 int use_deadline = (timeout_obj != Py_None); in _multiprocessing_SemLock_acquire_impl()
317 double timeout = PyFloat_AsDouble(timeout_obj); in _multiprocessing_SemLock_acquire_impl()
/third_party/python/Modules/
Dselectmodule.c247 PyObject *xlist, PyObject *timeout_obj) in select_select_impl() argument
270 if (timeout_obj == Py_None) in select_select_impl()
273 if (_PyTime_FromSecondsObject(&timeout, timeout_obj, in select_select_impl()
576 select_poll_poll_impl(pollObject *self, PyObject *timeout_obj) in select_poll_poll_impl() argument
585 if (timeout_obj != Py_None) { in select_poll_poll_impl()
586 if (_PyTime_FromMillisecondsObject(&timeout, timeout_obj, in select_poll_poll_impl()
900 select_devpoll_poll_impl(devpollObject *self, PyObject *timeout_obj) in select_devpoll_poll_impl() argument
913 if (timeout_obj == Py_None) { in select_devpoll_poll_impl()
918 if (_PyTime_FromMillisecondsObject(&timeout, timeout_obj, in select_devpoll_poll_impl()
1512 select_epoll_poll_impl(pyEpoll_Object *self, PyObject *timeout_obj, in select_epoll_poll_impl() argument
[all …]
D_threadmodule.c137 PyObject *timeout_obj = NULL; in lock_acquire_parse_args() local
143 &blocking, &timeout_obj)) in lock_acquire_parse_args()
146 if (timeout_obj in lock_acquire_parse_args()
148 timeout_obj, _PyTime_ROUND_TIMEOUT) < 0) in lock_acquire_parse_args()
Dfaulthandler.c688 PyObject *timeout_obj; in faulthandler_dump_traceback_later() local
700 &timeout_obj, &repeat, &file, &exit)) in faulthandler_dump_traceback_later()
703 if (_PyTime_FromSecondsObject(&timeout, timeout_obj, in faulthandler_dump_traceback_later()
Dsignalmodule.c1226 PyObject *timeout_obj) argument
1235 timeout_obj, _PyTime_ROUND_CEILING) < 0)
Dsocketmodule.c2819 socket_parse_timeout(_PyTime_t *timeout, PyObject *timeout_obj) in socket_parse_timeout() argument
2829 if (timeout_obj == Py_None) { in socket_parse_timeout()
2835 timeout_obj, _PyTime_ROUND_TIMEOUT) < 0) in socket_parse_timeout()
/third_party/boost/boost/asio/detail/impl/
Dsocket_ops.ipp2218 timeval timeout_obj;
2222 timeout_obj.tv_sec = 0;
2223 timeout_obj.tv_usec = 0;
2224 timeout = &timeout_obj;
2228 timeout_obj.tv_sec = msec / 1000;
2229 timeout_obj.tv_usec = (msec % 1000) * 1000;
2230 timeout = &timeout_obj;
2270 timeval timeout_obj;
2274 timeout_obj.tv_sec = 0;
2275 timeout_obj.tv_usec = 0;
[all …]
/third_party/boost/libs/asio/include/boost/asio/detail/impl/
Dsocket_ops.ipp2218 timeval timeout_obj;
2222 timeout_obj.tv_sec = 0;
2223 timeout_obj.tv_usec = 0;
2224 timeout = &timeout_obj;
2228 timeout_obj.tv_sec = msec / 1000;
2229 timeout_obj.tv_usec = (msec % 1000) * 1000;
2230 timeout = &timeout_obj;
2270 timeval timeout_obj;
2274 timeout_obj.tv_sec = 0;
2275 timeout_obj.tv_usec = 0;
[all …]