HomeSort by relevance Sort by last modified time
    Searched refs:threading (Results 101 - 125 of 524) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/autotest/client/deps/lansim/src/py/
simulator.py 10 import threading namespace
279 class SimulatorThread(threading.Thread, Simulator):
302 threading.Thread.__init__(self)
307 self._lock = threading.RLock()
344 lock_cond = threading.Lock()
345 cond_var = threading.Condition(lock_cond)
  /external/chromium-trace/catapult/common/py_trace_event/py_trace_event/trace_event_impl/
log.py 9 import threading namespace
16 _lock = threading.Lock()
23 _tls = threading.local() # tls used to detect forking/etc
87 tid = threading.current_thread().ident
91 "pid": os.getpid(), "tid": threading.current_thread().ident,
155 tid = threading.current_thread().ident
  /external/libchrome/
Android.mk 152 base/threading/non_thread_safe_impl.cc \
153 base/threading/platform_thread_posix.cc \
154 base/threading/post_task_and_reply_impl.cc \
155 base/threading/sequenced_worker_pool.cc \
156 base/threading/simple_thread.cc \
157 base/threading/thread.cc \
158 base/threading/thread_checker_impl.cc \
159 base/threading/thread_collision_warner.cc \
160 base/threading/thread_id_name_manager.cc \
161 base/threading/thread_local_posix.cc
    [all...]
  /external/v8/tools/testrunner/server/
main.py 33 import threading namespace
61 self.peer_list_lock = threading.Lock()
82 self.perf_data_lock = threading.Lock()
85 self.local_handler_thread = threading.Thread(
90 self.work_handler_thread = threading.Thread(
95 self.status_handler_thread = threading.Thread(
100 self.presence_daemon_thread = threading.Thread(
  /external/llvm/utils/lit/lit/
run.py 2 import threading namespace
27 self.lock = threading.Lock()
96 self.lock = threading.Lock()
226 task_impl = threading.Thread
245 timeout_timer = threading.Timer(max_time, timeout_handler)
  /cts/hostsidetests/theme/
run_theme_capture_device.py 20 import threading namespace
42 class ParallelExecutor(threading.Thread):
44 threading.Thread.__init__(self)
  /external/autotest/client/cros/
dns_server.py 5 import common, constants, logging, os, socket, stat, sys, threading, time namespace
20 self._stopper = threading.Event()
21 self._thread = threading.Thread(target=self._dns.run,
  /external/autotest/server/cros/dynamic_suite/
frontend_wrappers.py 6 import threading namespace
88 if isinstance(threading.current_thread(), threading._MainThread):
  /external/autotest/server/cros/
stress.py 7 import threading namespace
12 class BaseStressor(threading.Thread):
56 Overloaded from threading.Thread. This is run in a separate thread when
128 self._complete = threading.Event()
  /external/autotest/server/site_tests/network_EthCapsServer/
network_EthCapsServer.py 5 import logging, os, socket, subprocess, tempfile, threading, time namespace
12 class WolWake(threading.Thread):
23 threading.Thread.__init__(self)
  /external/autotest/server/site_tests/power_SuspendShutdown/
power_SuspendShutdown.py 5 import json, logging, threading, time, traceback namespace
113 thread_started_evt = threading.Event()
116 t = threading.Thread(target=self.login_into_dut,
  /external/chromium-trace/catapult/systrace/profile_chrome/
atrace_tracing_agent.py 7 import threading namespace
38 self._done = threading.Event()
53 self._thread = threading.Thread(target=self._CollectData)
  /external/v8/tools/testrunner/local/
perfdata.py 31 import threading namespace
55 self.lock = threading.Lock()
99 self.lock = threading.Lock()
  /external/v8/tools/testrunner/network/
endpoint.py 32 import threading namespace
49 self.sender_lock = threading.Lock()
50 self.senderthread = threading.Thread(target=self._SenderThread)
  /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_find.py 11 import threading namespace
34 class P2P_Find (threading.Thread):
60 threading.Thread.__init__(self)
p2p_flush.py 11 import threading namespace
30 class P2P_Flush (threading.Thread):
56 threading.Thread.__init__(self)
p2p_group_add.py 10 import threading namespace
40 class P2P_Group_Add (threading.Thread):
74 threading.Thread.__init__(self)
p2p_invite.py 10 import threading namespace
39 class P2P_Invite (threading.Thread):
71 threading.Thread.__init__(self)
p2p_listen.py 11 import threading namespace
31 class P2P_Listen(threading.Thread):
57 threading.Thread.__init__(self)
p2p_stop_find.py 9 import threading namespace
32 class P2P_Stop_Find (threading.Thread):
58 threading.Thread.__init__(self)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_docxmlrpc.py 5 threading = test_support.import_module('threading') variable
76 self.evt = threading.Event()
77 threading.Thread(target=server, args=(self.evt, 1)).start()
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_docxmlrpc.py 5 threading = test_support.import_module('threading') variable
76 self.evt = threading.Event()
77 threading.Thread(target=server, args=(self.evt, 1)).start()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 5 threading = test_support.import_module('threading') variable
76 self.evt = threading.Event()
77 threading.Thread(target=server, args=(self.evt, 1)).start()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_docxmlrpc.py 5 threading = test_support.import_module('threading') variable
76 self.evt = threading.Event()
77 threading.Thread(target=server, args=(self.evt, 1)).start()

Completed in 1112 milliseconds

1 2 3 45 6 7 8 91011>>