Searched refs:PyThread_acquire_lock_timed (Results 1 – 8 of 8) sorted by relevance
| /external/python/cpython3/Modules/ |
| D | _queuemodule.c | 218 r = PyThread_acquire_lock_timed(self->lock, 0, 0); in _queue_SimpleQueue_get_impl() 221 r = PyThread_acquire_lock_timed(self->lock, microseconds, 1); in _queue_SimpleQueue_get_impl()
|
| D | _threadmodule.c | 60 r = PyThread_acquire_lock_timed(lock, 0, 0); in acquire_timed() 63 r = PyThread_acquire_lock_timed(lock, microseconds, 1); in acquire_timed()
|
| D | faulthandler.c | 602 st = PyThread_acquire_lock_timed(thread.cancel_event, in faulthandler_thread()
|
| /external/python/cpython3/Python/ |
| D | thread_pthread.h | 427 PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds, in PyThread_acquire_lock_timed() function 599 PyThread_acquire_lock_timed(PyThread_type_lock lock, PY_TIMEOUT_T microseconds, in PyThread_acquire_lock_timed() function 720 return PyThread_acquire_lock_timed(lock, waitflag ? -1 : 0, /*intr_flag=*/0); in PyThread_acquire_lock()
|
| D | thread_nt.h | 299 PyThread_acquire_lock_timed(PyThread_type_lock aLock, in PyThread_acquire_lock_timed() function 338 return PyThread_acquire_lock_timed(aLock, waitflag ? -1 : 0, 0); in PyThread_acquire_lock()
|
| /external/python/cpython3/Include/ |
| D | pythread.h | 87 PyAPI_FUNC(PyLockStatus) PyThread_acquire_lock_timed(PyThread_type_lock,
|
| /external/python/cpython3/Modules/_io/ |
| D | bufferedio.c | 289 st = PyThread_acquire_lock_timed(self->lock, (PY_TIMEOUT_T)1e6, 0); in _enter_buffered_busy()
|
| /external/python/cpython3/Misc/NEWS.d/ |
| D | 3.7.0a3.rst | 846 Fix the pthread+semaphore implementation of PyThread_acquire_lock_timed()
|