Home
last modified time | relevance | path

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

/external/python/cpython3/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()
/external/python/cpython3/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.c628 st = PyThread_acquire_lock_timed(thread.cancel_event, in faulthandler_thread()
/external/python/cpython3/Include/
Dpythread.h87 PyAPI_FUNC(PyLockStatus) PyThread_acquire_lock_timed(PyThread_type_lock,
/external/python/cpython3/PC/
Dpython3dll.c546 EXPORT_FUNC(PyThread_acquire_lock_timed)
/external/python/cpython3/Doc/data/
Dstable_abi.dat602 function,PyThread_acquire_lock_timed,3.2,
Dpython3.10.abi662 …<elf-symbol name='PyThread_acquire_lock_timed' type='func-type' binding='global-binding' visibilit…
18513PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filepath='Python/thread_pt…
20443 …<function-decl name='PyThread_acquire_lock_timed' mangled-name='PyThread_acquire_lock_timed' filep…
/external/python/cpython3/Misc/
Dstable_abi.txt1717 function PyThread_acquire_lock_timed
/external/python/cpython3/Modules/_io/
Dbufferedio.c289 st = PyThread_acquire_lock_timed(self->lock, (PY_TIMEOUT_T)1e6, 0); in _enter_buffered_busy()
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst846 Fix the pthread+semaphore implementation of PyThread_acquire_lock_timed()