HomeSort by relevance Sort by last modified time
    Searched refs:_thread (Results 26 - 50 of 76) sorted by null

12 3 4

  /external/python/cpython3/Lib/test/
test_threading_local.py 8 _thread = support.import_module('_thread') variable
196 _local = _thread._local
210 _threading_local.local = _thread._local
test_threading.py 12 _thread = import_module('_thread') variable
128 _thread.start_new_thread(f, ())
140 except _thread.error:
152 except _thread.error:
168 tid = _thread.start_new_thread(f, (mutex,))
287 import ctypes, sys, time, _thread
290 ready = _thread.allocate_lock()
307 _thread.start_new_thread(waitingThread, ())
438 import _thread, threading, os, tim
    [all...]
test_imp.py 2 import _thread
4 _thread = None variable
26 @unittest.skipIf(_thread is None, '_thread module is required')
  /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...]
tempfile.py 49 import _thread
51 import _dummy_thread as _thread
52 _allocate_lock = _thread.allocate_lock
reprlib.py 8 from _thread import get_ident
  /external/webrtc/webrtc/voice_engine/test/android/android_test/jni/
android_test.cc 180 rtc::PlatformThread _thread; member in class:ThreadTest
185 if (_thread)
186 _thread->Stop();
191 _thread(Run, this, "ThreadTest thread");
264 _thread->Stop();
273 if (_thread)
275 _thread->Start();
    [all...]
  /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/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()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /external/python/cpython2/Lib/test/
test_threading_local.py 8 _thread = support.import_module('thread') variable
186 _local = _thread._local
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 8 _thread = test_support.import_module('thread') variable
191 _local = _thread._local
  /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/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...]
  /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
  /prebuilts/gdb/darwin-x86/lib/python2.7/
tempfile.py 60 import thread as _thread
62 import dummy_thread as _thread
63 _allocate_lock = _thread.allocate_lock
  /prebuilts/gdb/linux-x86/lib/python2.7/
tempfile.py 60 import thread as _thread
62 import dummy_thread as _thread
63 _allocate_lock = _thread.allocate_lock
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 60 import thread as _thread
62 import dummy_thread as _thread
63 _allocate_lock = _thread.allocate_lock
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tempfile.py 60 import thread as _thread
62 import dummy_thread as _thread
63 _allocate_lock = _thread.allocate_lock
  /external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
compat.py 89 import _thread as thread

Completed in 805 milliseconds

12 3 4