Home
last modified time | relevance | path

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

/third_party/python/Modules/
D_queuemodule.c244 r = PyThread_acquire_lock_timed(self->lock, 0, 0); in _queue_SimpleQueue_get_impl()
247 r = PyThread_acquire_lock_timed(self->lock, microseconds, 1); in _queue_SimpleQueue_get_impl()
D_threadmodule.c99 r = PyThread_acquire_lock_timed(lock, 0, 0); in acquire_timed()
102 r = PyThread_acquire_lock_timed(lock, microseconds, 1); in acquire_timed()
Dfaulthandler.c606 st = PyThread_acquire_lock_timed(thread.cancel_event, in faulthandler_thread()
/third_party/python/Python/
Dthread_nt.h305 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() function
344 return PyThread_acquire_lock_timed(aLock, waitflag ? -1 : 0, 0); in PyThread_acquire_lock()
Dthread_pthread.h439 PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds, in PyThread_acquire_lock_timed() function
631 PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds, in PyThread_acquire_lock_timed() function
752 return PyThread_acquire_lock_timed(lock, waitflag ? -1 : 0, /*intr_flag=*/0); in PyThread_acquire_lock()
/third_party/python/Include/
Dpythread.h87 PyAPI_FUNC(PyLockStatus) PyThread_acquire_lock_timed(PyThread_type_lock,
/third_party/python/PC/
Dpython3dll.c546 EXPORT_FUNC(PyThread_acquire_lock_timed)
/third_party/python/Doc/data/
Dstable_abi.dat602 function,PyThread_acquire_lock_timed,3.2,
/third_party/python/Modules/_io/
Dbufferedio.c289 st = PyThread_acquire_lock_timed(self->lock, (PY_TIMEOUT_T)1e6, 0); in _enter_buffered_busy()
/third_party/python/Misc/
Dstable_abi.txt1717 function PyThread_acquire_lock_timed
/third_party/python/Misc/NEWS.d/
D3.7.0a3.rst846 Fix the pthread+semaphore implementation of PyThread_acquire_lock_timed()