/third_party/python/Modules/clinic/ |
D | selectmodule.c.h | 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 [all …]
|
D | signalmodule.c.h | 529 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/ |
D | semaphore.c.h | 18 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/ |
D | semaphore.c | 88 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/ |
D | selectmodule.c | 247 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.c | 137 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()
|
D | faulthandler.c | 688 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()
|
D | signalmodule.c | 1226 PyObject *timeout_obj) argument 1235 timeout_obj, _PyTime_ROUND_CEILING) < 0)
|
D | socketmodule.c | 2819 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/ |
D | socket_ops.ipp | 2218 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/ |
D | socket_ops.ipp | 2218 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 …]
|