Home
last modified time | relevance | path

Searched refs:_PyTime_ROUND_TIMEOUT (Results 1 – 7 of 7) sorted by relevance

/third_party/python/Modules/
Dselectmodule.c274 _PyTime_ROUND_TIMEOUT) < 0) { in select_select_impl()
282 if (_PyTime_AsTimeval(timeout, &tv, _PyTime_ROUND_TIMEOUT) == -1) in select_select_impl()
587 _PyTime_ROUND_TIMEOUT) < 0) { in select_poll_poll_impl()
595 ms = _PyTime_AsMilliseconds(timeout, _PyTime_ROUND_TIMEOUT); in select_poll_poll_impl()
919 _PyTime_ROUND_TIMEOUT) < 0) { in select_devpoll_poll_impl()
927 ms = _PyTime_AsMilliseconds(timeout, _PyTime_ROUND_TIMEOUT); in select_devpoll_poll_impl()
1528 _PyTime_ROUND_TIMEOUT) < 0) { in select_epoll_poll_impl()
2116 otimeout, _PyTime_ROUND_TIMEOUT) < 0) { in select_kqueue_control_impl()
Dfaulthandler.c704 _PyTime_ROUND_TIMEOUT) < 0) { in faulthandler_dump_traceback_later()
707 timeout_us = _PyTime_AsMicroseconds(timeout, _PyTime_ROUND_TIMEOUT); in faulthandler_dump_traceback_later()
D_threadmodule.c148 timeout_obj, _PyTime_ROUND_TIMEOUT) < 0) in lock_acquire_parse_args()
166 microseconds = _PyTime_AsMicroseconds(*timeout, _PyTime_ROUND_TIMEOUT); in lock_acquire_parse_args()
Dtimemodule.c363 if (_PyTime_FromSecondsObject(&secs, obj, _PyTime_ROUND_TIMEOUT))
Dsocketmodule.c2835 timeout_obj, _PyTime_ROUND_TIMEOUT) < 0) in socket_parse_timeout()
2844 overflow |= (_PyTime_AsTimeval(*timeout, &tv, _PyTime_ROUND_TIMEOUT) < 0); in socket_parse_timeout()
2847 ms = _PyTime_AsMilliseconds(*timeout, _PyTime_ROUND_TIMEOUT); in socket_parse_timeout()
/third_party/python/Include/cpython/
Dpytime.h39 _PyTime_ROUND_TIMEOUT = _PyTime_ROUND_UP enumerator
/third_party/python/Python/
Dthread_nt.h86 _PyTime_t microseconds = _PyTime_AsMicroseconds(nanoseconds, _PyTime_ROUND_TIMEOUT); in EnterNonRecursiveMutex()