Searched refs:PyThread_get_thread_ident (Results 1 – 16 of 16) sorted by relevance
| /third_party/python/Python/ |
| D | thread_nt.h | 151 unsigned long PyThread_get_thread_ident(void); 195 PyThread_get_thread_ident())); in PyThread_start_new_thread() 216 PyThread_get_thread_ident(), e)); in PyThread_start_new_thread() 222 PyThread_get_thread_ident(), (void*)hThread)); in PyThread_start_new_thread() 233 PyThread_get_thread_ident(void) in PyThread_get_thread_ident() function 263 dprintf(("%lu: PyThread_exit_thread called\n", PyThread_get_thread_ident())); in PyThread_exit_thread() 285 dprintf(("%lu: PyThread_allocate_lock() -> %p\n", PyThread_get_thread_ident(), aLock)); in PyThread_allocate_lock() 293 dprintf(("%lu: PyThread_free_lock(%p) called\n", PyThread_get_thread_ident(),aLock)); in PyThread_free_lock() 326 PyThread_get_thread_ident(), aLock, microseconds)); in PyThread_acquire_lock_timed() 337 PyThread_get_thread_ident(), aLock, microseconds, success)); in PyThread_acquire_lock_timed() [all …]
|
| D | pystate.c | 90 runtime->main_thread = PyThread_get_thread_ident(); in _PyRuntimeState_Init_impl() 142 runtime->main_thread = PyThread_get_thread_ident(); in _PyRuntimeState_ReInitThreads() 633 tstate->thread_id = PyThread_get_thread_ident(); in new_threadstate()
|
| D | import.c | 120 unsigned long me = PyThread_get_thread_ident(); in _PyImport_AcquireLock() 147 unsigned long me = PyThread_get_thread_ident(); in _PyImport_ReleaseLock() 177 unsigned long me = PyThread_get_thread_ident(); in _PyImport_ReInitLock()
|
| D | thread_pthread.h | 329 PyThread_get_thread_ident(void) in PyThread_get_thread_ident() function
|
| /third_party/python/Modules/ |
| D | _threadmodule.c | 367 tid = PyThread_get_thread_ident(); in rlock_acquire() 410 unsigned long tid = PyThread_get_thread_ident(); in rlock_release() 495 unsigned long tid = PyThread_get_thread_ident(); in rlock_is_owned() 1085 tstate->thread_id = PyThread_get_thread_ident(); in thread_run() 1239 unsigned long ident = PyThread_get_thread_ident(); in thread_get_ident() 1431 unsigned long ident = PyThread_get_thread_ident(); in thread_excepthook_file()
|
| /third_party/python/Include/internal/ |
| D | pycore_pystate.h | 19 unsigned long thread = PyThread_get_thread_ident(); in _Py_IsMainThread()
|
| /third_party/python/Include/ |
| D | pythread.h | 26 PyAPI_FUNC(unsigned long) PyThread_get_thread_ident(void);
|
| /third_party/python/Modules/_multiprocessing/ |
| D | semaphore.c | 40 #define ISMINE(o) (o->count > 0 && PyThread_get_thread_ident() == o->last_tid) 373 self->last_tid = PyThread_get_thread_ident(); in _multiprocessing_SemLock_acquire_impl()
|
| /third_party/python/Modules/_sqlite/ |
| D | connection.c | 166 self->thread_ident = PyThread_get_thread_ident(); in pysqlite_connection_init() 1271 if (PyThread_get_thread_ident() != self->thread_ident) { in pysqlite_check_thread() 1275 self->thread_ident, PyThread_get_thread_ident()); in pysqlite_check_thread()
|
| /third_party/python/Modules/_io/ |
| D | bufferedio.c | 273 if (self->owner == PyThread_get_thread_ident()) { in _enter_buffered_busy() 305 && (self->owner = PyThread_get_thread_ident(), 1) )
|
| /third_party/python/Doc/data/ |
| D | stable_abi.dat | 611 function,PyThread_get_thread_ident,3.2,
|
| /third_party/python/PC/ |
| D | python3dll.c | 555 EXPORT_FUNC(PyThread_get_thread_ident)
|
| /third_party/python/Misc/ |
| D | stable_abi.txt | 1727 function PyThread_get_thread_ident
|
| /third_party/python/patches/ |
| D | cpython_mingw_v3.10.2.patch | 9749 dprintf(("%lu: PyThread_release_lock(%p) called\n", PyThread_get_thread_ident(),aLock)); 9753 …rintf(("%lu: Could not PyThread_release_lock(%p) error: %ld\n", PyThread_get_thread_ident(), aLock…
|
| /third_party/python/Doc/whatsnew/ |
| D | 3.7.rst | 1710 :c:func:`PyThread_get_thread_ident`, and the *id* parameter of
|
| /third_party/python/Misc/NEWS.d/ |
| D | 3.7.0a1.rst | 6325 PyThread_get_thread_ident(), and the id parameter of
|