Searched refs:_thread (Results 1 – 25 of 55) sorted by relevance
123
/third_party/mesa3d/src/glx/apple/ |
D | apple_glx_log.c | 107 char *_thread; in _apple_glx_vlog() local 108 asprintf(&_thread, "%"PRIu64, thread); in _apple_glx_vlog() 109 if (_thread) { in _apple_glx_vlog() 110 asl_set(msg, "Thread", _thread); in _apple_glx_vlog() 111 free(_thread); in _apple_glx_vlog()
|
/third_party/python/Lib/multiprocessing/ |
D | resource_sharer.py | 69 self._thread = None 99 self._thread.join(timeout) 100 if self._thread.is_alive(): 104 self._thread = None 120 self._thread = None 131 self._thread = t
|
D | queues.py | 77 self._thread = None 93 if self._thread is None: 169 self._thread = threading.Thread( 176 self._thread.daemon = True 179 self._thread.start() 184 self._thread, Queue._finalize_join, 185 [weakref.ref(self._thread)], 316 if self._thread is None:
|
/third_party/python/Lib/test/support/ |
D | threading_helper.py | 1 import _thread 24 return _thread._count(), threading._dangling.copy() 31 values = _thread._count(), threading._dangling 85 old_count = _thread._count() 92 count = _thread._count()
|
/third_party/grpc/src/python/grpcio/grpc/_cython/_cygrpc/ |
D | fork_windows.pyx.pxi | 24 self._thread = threading.Thread(target=_run_with_context(target), args=args) 27 self._thread.daemon = daemonic 30 self._thread.start() 33 self._thread.join()
|
D | fork_posix.pyx.pxi | 107 self._thread = threading.Thread(target=_run_with_context(managed_target), args=args) 109 self._thread = threading.Thread(target=_run_with_context(target), args=args) 112 self._thread.daemon = daemonic 117 self._thread.start() 120 self._thread.join()
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/_cython/ |
D | test_utilities.py | 33 self._thread = threading.Thread(target=wrapped_function) 34 self._thread.start() 41 self._thread.join()
|
/third_party/python/Lib/ |
D | threading.py | 5 import _thread 34 _start_new_thread = _thread.start_new_thread 35 _allocate_lock = _thread.allocate_lock 36 _set_sentinel = _thread._set_sentinel 37 get_ident = _thread.get_ident 39 get_native_id = _thread.get_native_id 44 ThreadError = _thread.error 46 _CRLock = _thread.RLock 49 TIMEOUT_MAX = _thread.TIMEOUT_MAX 50 del _thread [all …]
|
D | telnetlib.py | 565 import _thread 566 _thread.start_new_thread(self.listener, ())
|
D | reprlib.py | 7 from _thread import get_ident
|
D | tempfile.py | 49 import _thread 50 _allocate_lock = _thread.allocate_lock
|
D | dataclasses.py | 10 import _thread 400 key = id(self), _thread.get_ident()
|
/third_party/python/Lib/test/ |
D | test_threading.py | 13 import _thread 179 tid = _thread.start_new_thread(f, ()) 191 except _thread.error: 203 except _thread.error: 220 tid = _thread.start_new_thread(f, (mutex,)) 714 started = _thread.allocate_lock() 715 finish = _thread.allocate_lock() 749 started = _thread.allocate_lock() 750 finish = _thread.allocate_lock() 1608 _thread.interrupt_main() [all …]
|
D | test_threading_local.py | 10 import _thread 198 _local = _thread._local 212 _threading_local.local = _thread._local
|
D | test_threadsignals.py | 8 import _thread as thread
|
D | test_thread.py | 6 import _thread as thread
|
D | test_logging.py | 835 self._thread = None 855 self._thread = t = threading.Thread(target=self.serve_forever, 877 threading_helper.join_thread(self._thread) 878 self._thread = None 900 self._thread = None 909 self._thread = t = threading.Thread(target=self.serve_forever, 927 if self._thread is not None: 928 threading_helper.join_thread(self._thread) 929 self._thread = None
|
/third_party/grpc/src/python/grpcio_tests/tests/unit/ |
D | _tcp_proxy.py | 64 self._thread = threading.Thread(target=self._run_proxy) 71 self._thread.start() 123 self._thread.join()
|
/third_party/python/Lib/importlib/ |
D | _bootstrap.py | 32 _thread = None variable 72 self.lock = _thread.allocate_lock() 73 self.wakeup = _thread.allocate_lock() 81 me = _thread.get_ident() 106 tid = _thread.get_ident() 126 tid = _thread.get_ident() 193 if _thread is None:
|
/third_party/python/Doc/library/ |
D | _thread.rst | 1 :mod:`_thread` --- Low-level threading API 4 .. module:: _thread 198 import _thread 200 a_lock = _thread.allocate_lock() 214 equivalent to calling :func:`_thread.exit`.
|
D | concurrency.rst | 31 _thread.rst
|
/third_party/python/Lib/asyncio/ |
D | base_futures.py | 4 from _thread import get_ident
|
/third_party/libxml2/python/tests/ |
D | thread2.py | 4 from _thread import get_ident
|
/third_party/python/Lib/logging/ |
D | handlers.py | 1481 self._thread = None 1500 self._thread = t = threading.Thread(target=self._monitor) 1572 self._thread.join() 1573 self._thread = None
|
/third_party/ffmpeg/tests/api/ |
D | api-threadmessage-test.c | 222 ret = pthread_create(&td->tid, NULL, type##_thread, td); \ in main()
|
123