/external/python/cpython3/Lib/test/ |
test_imp.py | 2 import _thread 4 _thread = None variable 26 @unittest.skipIf(_thread is None, '_thread module is required')
|
test_multiprocessing_main_handling.py | 3 # Skip tests if _thread or _multiprocessing wasn't built. 4 support.import_module('_thread')
|
test_thread.py | 5 thread = support.import_module('_thread')
|
test_threadsignals.py | 8 thread = import_module('_thread')
|
/external/python/cpython3/PC/ |
config.c | 105 {"_thread", PyInit__thread},
|
/external/python/cpython3/Lib/importlib/ |
_bootstrap.py | 58 self.lock = _thread.allocate_lock() 59 self.wakeup = _thread.allocate_lock() 67 me = _thread.get_ident() 83 tid = _thread.get_ident() 103 tid = _thread.get_ident() 169 if _thread is None: [all...] |
/external/skia/infra/bots/recipe_modules/core/resources/ |
elf_symbolizer.py | 244 self._thread = None # Threading.thread instance. 321 The poller |_thread| will terminate as well due to the broken pipe.""" 409 self._thread = threading.Thread( 412 self._thread.daemon = True # Don't prevent early process exit. 413 self._thread.start()
|
/external/skqp/infra/bots/recipe_modules/core/resources/ |
elf_symbolizer.py | 244 self._thread = None # Threading.thread instance. 321 The poller |_thread| will terminate as well due to the broken pipe.""" 409 self._thread = threading.Thread( 412 self._thread.daemon = True # Don't prevent early process exit. 413 self._thread.start()
|
/external/autotest/client/site_tests/network_ProxyResolver/ |
network_ProxyResolver.py | 84 self._thread = threading.Thread(target=self._server.serve_forever) 88 self._thread.start() 94 self._thread.join()
|
/external/valgrind/helgrind/ |
hg_lock_n_thread.h | 82 struct _Thread { 84 struct _Thread* admin;
|
/external/python/cpython3/Lib/ |
threading.py | 4 import _thread 32 _start_new_thread = _thread.start_new_thread 33 _allocate_lock = _thread.allocate_lock 34 _set_sentinel = _thread._set_sentinel 35 get_ident = _thread.get_ident 36 ThreadError = _thread.error 38 _CRLock = _thread.RLock 41 TIMEOUT_MAX = _thread.TIMEOUT_MAX 42 del _thread [all...] |
_compat_pickle.py | 30 'thread': '_thread',
|
reprlib.py | 8 from _thread import get_ident
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/ |
fix_imports.py | 34 'thread': '_thread',
|
/external/python/cpython2/Lib/lib2to3/fixes/ |
fix_imports.py | 34 'thread': '_thread',
|
/external/python/cpython3/Lib/lib2to3/fixes/ |
fix_imports.py | 34 'thread': '_thread',
|
/prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/fixes/ |
fix_imports.py | 34 'thread': '_thread',
|
/prebuilts/gdb/linux-x86/lib/python2.7/lib2to3/fixes/ |
fix_imports.py | 34 'thread': '_thread',
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_imports.py | 34 'thread': '_thread',
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/ |
fix_imports.py | 34 'thread': '_thread',
|
/external/python/cpython3/Modules/ |
_threadmodule.c | 236 "_thread.lock", /*tp_name*/ 497 "_thread.RLock", /*tp_name*/ 614 /* tp_name */ "_thread._localdummy", 874 /* tp_name */ "_thread._local", [all...] |
/external/chromium-trace/catapult/third_party/pyserial/serial/ |
rfc2217.py | 432 self._thread = threading.Thread(target=self._telnetReadLoop) 433 self._thread.setDaemon(True) 434 self._thread.setName('pySerial RFC 2217 reader thread for %s' % (self._port,)) 435 self._thread.start() 517 if self._thread: 518 self._thread.join() 578 if self._thread is None: 744 self._thread = None [all...] |
/external/python/cpython2/Doc/library/ |
thread.rst | 8 The :mod:`thread` module has been renamed to :mod:`_thread` in Python 3.
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
tempfile.py | 59 import thread as _thread
61 import dummy_thread as _thread
62 _allocate_lock = _thread.allocate_lock
|
/external/python/cpython2/Lib/ |
tempfile.py | 60 import thread as _thread 62 import dummy_thread as _thread 63 _allocate_lock = _thread.allocate_lock
|