/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
reduction.py | 41 import threading namespace 96 _lock = threading.Lock() 111 t = threading.Thread(target=_serve)
|
synchronize.py | 39 import threading namespace 153 if threading.current_thread().name != 'MainThread': 154 name += '|' + threading.current_thread().name 178 if threading.current_thread().name != 'MainThread': 179 name += '|' + threading.current_thread().name
|
__init__.py | 2 # Package analogous to 'threading.py' but using processes 7 # the API) of threading.py but uses processes instead of threads. A 9 # wrapper for 'threading'.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
reduction.py | 41 import threading namespace 96 _lock = threading.Lock() 111 t = threading.Thread(target=_serve)
|
synchronize.py | 39 import threading namespace 153 if threading.current_thread().name != 'MainThread': 154 name += '|' + threading.current_thread().name 178 if threading.current_thread().name != 'MainThread': 179 name += '|' + threading.current_thread().name
|
__init__.py | 2 # Package analogous to 'threading.py' but using processes 7 # the API) of threading.py but uses processes instead of threads. A 9 # wrapper for 'threading'.
|
/external/chromium_org/v8/tools/testrunner/network/ |
network_execution.py | 32 import threading namespace 65 self.tests_lock = threading.Lock() 80 self.initialization_lock = threading.Lock() 83 self.local_receiver_thread = threading.Thread( 144 thread = threading.Thread(target=self._TalkToPeer, args=[p])
|
/external/chromium/ |
Android.mk | 130 base/threading/platform_thread_posix.cc \ 131 base/threading/thread.cc \ 132 base/threading/thread_checker_impl.cc \ 133 base/threading/thread_collision_warner.cc \ 134 base/threading/thread_local_posix.cc \ 135 base/threading/thread_local_storage_posix.cc \ 136 base/threading/worker_pool_posix.cc \
|
/external/chromium_org/base/ |
base.gyp | 648 'threading/non_thread_safe_unittest.cc', 649 'threading/platform_thread_unittest.cc', 650 'threading/sequenced_worker_pool_unittest.cc', 651 'threading/simple_thread_unittest.cc', 652 'threading/thread_checker_unittest.cc', 653 'threading/thread_collision_warner_unittest.cc', 654 'threading/thread_id_name_manager_unittest.cc', 655 'threading/thread_local_storage_unittest.cc', 656 'threading/thread_local_unittest.cc', 657 'threading/thread_unittest.cc' [all...] |
/external/chromium_org/chrome/test/pyautolib/ |
remote_inspector_client.py | 48 import threading namespace 73 is_fulfilled_condition: A threading.Condition for waiting for the request to 90 self.is_fulfilled_condition = threading.Condition() 139 self._socket_buffer_lock = threading.Lock() 274 class _RemoteInspectorThread(threading.Thread): 299 threading.Thread.__init__(self) 306 self._action_queue_condition = threading.Condition() 308 self._action_specific_callback_lock = threading.Lock() 310 self._general_callbacks_lock = threading.Lock() 362 """Start this thread; overridden from threading.Thread."" [all...] |
/external/chromium/base/threading/ |
thread_collision_warner_unittest.cc | 8 #include "base/threading/platform_thread.h" 9 #include "base/threading/simple_thread.h" 10 #include "base/threading/thread_collision_warner.h"
|
/external/chromium_org/base/threading/ |
thread_collision_warner_unittest.cc | 8 #include "base/threading/platform_thread.h" 9 #include "base/threading/simple_thread.h" 10 #include "base/threading/thread_collision_warner.h"
|
/external/chromium_org/build/android/pylib/perf/ |
test_runner.py | 49 import threading namespace 92 self._stopped = threading.Event() 93 self._timer = threading.Thread(target=self._runner)
|
/external/chromium_org/chrome/test/functional/media/ |
audio_tools.py | 23 import threading namespace 47 class AudioRecorderThread(threading.Thread): 51 threading.Thread.__init__(self)
|
cns_test_base.py | 12 import threading namespace 146 class ProcessLogger(threading.Thread): 155 threading.Thread.__init__(self)
|
/external/chromium_org/components/breakpad/tools/ |
generate_breakpad_symbols.py | 20 import threading namespace 144 print_lock = threading.Lock() 171 t = threading.Thread(target=_Worker)
|
/external/chromium_org/media/audio/win/ |
audio_low_latency_input_win.h | 65 #include "base/threading/non_thread_safe.h" 66 #include "base/threading/platform_thread.h" 67 #include "base/threading/simple_thread.h"
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/bot/ |
commitannouncer.py | 28 import threading namespace 191 class CommitAnnouncerThread(threading.Thread): 193 threading.Thread.__init__(self)
|
/external/chromium_org/tools/android/memdump/ |
memreport.py | 12 import threading namespace 140 should_quit = threading.Event() 238 t = threading.Thread(target=_Loop)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_lock.py | 12 from threading import Thread 15 from threading import currentThread 17 from threading import current_thread as currentThread
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
dbapi.py | 28 import threading namespace 30 threading = None variable 478 @unittest.skipUnless(threading, 'This test requires threading.') 501 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 519 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 537 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 555 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 573 t = threading.Thread(target=run, kwargs={"cur": self.cur, "errors": errors}) 591 t = threading.Thread(target=run, kwargs={"cur": self.cur, "errors": errors} [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
test_lock.py | 12 from threading import Thread 15 from threading import currentThread 17 from threading import current_thread as currentThread
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
dbapi.py | 28 import threading namespace 30 threading = None variable 478 @unittest.skipUnless(threading, 'This test requires threading.') 501 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 519 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 537 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 555 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 573 t = threading.Thread(target=run, kwargs={"cur": self.cur, "errors": errors}) 591 t = threading.Thread(target=run, kwargs={"cur": self.cur, "errors": errors} [all...] |
/external/chromium/base/ |
message_loop_proxy_impl.cc | 6 #include "base/threading/thread_restrictions.h"
|
message_loop_proxy_impl_unittest.cc | 8 #include "base/threading/thread.h"
|