HomeSort by relevance Sort by last modified time
    Searched defs:threading (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /external/chromium_org/build/android/pylib/utils/
timeout_retry.py 8 import threading namespace
36 name = 'TimeoutThread-for-%s' % threading.current_thread().name
reraiser_thread_unittest.py 7 import threading namespace
83 event = threading.Event()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/thread/
threadedmessagequeue.py 29 import threading namespace
36 self._lock = threading.Lock()
  /external/chromium_org/third_party/mesa/src/scons/
fixes.py 6 import threading namespace
9 spawn_lock = threading.Lock()
  /external/mesa3d/scons/
fixes.py 6 import threading namespace
9 spawn_lock = threading.Lock()
  /external/chromium_org/chrome/test/pyautolib/
timer_queue.py 6 import threading namespace
9 class TimerQueue(threading.Thread):
25 Note: TimerQueue is a subclass of threading.Thread, call start() to activate;
31 threading.Thread.__init__(self, name='timer_thread')
32 self.timer_queue_lock = threading.Lock()
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
abstractlocalservercommand.py 26 import threading namespace
54 threading.Timer(0.1, lambda: self._tool.user.open_url(server_url)).start()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 6 import threading namespace
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
dummy_threading.py 1 """Faux ``threading`` version using ``dummy_thread`` instead of ``thread``.
4 to not have ``threading`` considered imported. Had ``threading`` been
21 # ``threading`` below.
26 # in order to initially import ``threading``.
29 if 'threading' in sys_modules:
30 # If ``threading`` is already imported, might as well prevent
33 held_threading = sys_modules['threading']
35 del sys_modules['threading']
45 import threading namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 10 import threading namespace
21 class Worker(threading.Thread):
23 threading.Thread.__init__(self)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 6 import threading namespace
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
dummy_threading.py 1 """Faux ``threading`` version using ``dummy_thread`` instead of ``thread``.
4 to not have ``threading`` considered imported. Had ``threading`` been
21 # ``threading`` below.
26 # in order to initially import ``threading``.
29 if 'threading' in sys_modules:
30 # If ``threading`` is already imported, might as well prevent
33 held_threading = sys_modules['threading']
35 del sys_modules['threading']
45 import threading namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 10 import threading namespace
21 class Worker(threading.Thread):
23 threading.Thread.__init__(self)
  /development/testrunner/
run_command.py 22 import threading namespace
120 t = threading.Thread(target=Run)
  /external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/
native-messaging-example-host 11 import threading namespace
111 thread = threading.Thread(target=read_thread_func, args=(queue,))
  /external/chromium_org/chrome/test/functional/
webrtc_write_wsh.py 13 import threading namespace
42 class FrameWriterThread(threading.Thread):
50 threading.Thread.__init__(self)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
main.py 34 import threading namespace
51 self.wakeup_event = threading.Event()
mocktool.py 29 import threading namespace
67 self.wakeup_event = threading.Event()
  /external/chromium_org/third_party/android_testrunner/
run_command.py 23 import threading namespace
126 t = threading.Thread(target=Run)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/profiler/
java_heap_profiler.py 7 import threading namespace
26 self._timer = threading.Timer(self._DEFAULT_INTERVAL, self._OnTimer)
  /external/chromium_org/v8/tools/testrunner/network/
endpoint.py 32 import threading namespace
49 self.sender_lock = threading.Lock()
50 self.senderthread = threading.Thread(target=self._SenderThread)
perfdata.py 31 import threading namespace
55 self.lock = threading.Lock()
99 self.lock = threading.Lock()
  /external/sonivox/jet_tools/JetCreator/
JetPreview.py 26 import threading namespace
42 self.playerLock = threading.RLock()
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_disconnect.py 10 import threading namespace
30 class P2P_Disconnect (threading.Thread):
56 threading.Thread.__init__(self)
p2p_flush.py 11 import threading namespace
30 class P2P_Flush (threading.Thread):
56 threading.Thread.__init__(self)

Completed in 1157 milliseconds

1 2 3 4 5 6 7 8