| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| _threading_local.py | 3 (Note that this module provides a Python version of the threading.local 6 `threading`.) 37 >>> import threading 38 >>> thread = threading.Thread(target=f) 97 >>> thread = threading.Thread(target=f) 124 >>> thread = threading.Thread(target=f) 138 # We need to use objects from the threading module, but the threading 141 # with circular imports. For that reason, we don't import `threading` 224 import threading namespace [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| _threading_local.py | 3 (Note that this module provides a Python version of the threading.local 6 `threading`.) 37 >>> import threading 38 >>> thread = threading.Thread(target=f) 97 >>> thread = threading.Thread(target=f) 124 >>> thread = threading.Thread(target=f) 138 # We need to use objects from the threading module, but the threading 141 # with circular imports. For that reason, we don't import `threading` 224 import threading namespace [all...] |
| /external/autotest/client/virt/tests/ |
| nic_promisc.py | 1 import logging, threading namespace
|
| /external/chromium-trace/catapult/devil/devil/android/perf/ |
| surface_stats_collector.py | 6 import threading namespace 37 self._get_data_event = threading.Event() 38 self._stop_event = threading.Event() 40 self._collector_thread = threading.Thread(target=self._CollectorThread)
|
| /external/libbrillo/brillo/message_loops/ |
| message_loop.cc | 9 #include <base/threading/thread_local.h>
|
| /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/smart_ptr/detail/ |
| spinlock.hpp | 53 # error Unrecognized threading platform
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_smtplib.py | 15 import threading namespace 17 threading = None variable 43 @unittest.skipUnless(threading, 'Threading required for this test.') 48 self.evt = threading.Event() 53 self.thread = threading.Thread(target=server, args=servargs) 146 @unittest.skipUnless(threading, 'Threading required for this test.') 156 self.serv_evt = threading.Event() 157 self.client_evt = threading.Event( [all...] |
| test_contextlib.py | 9 import threading namespace 11 threading = None variable 270 @unittest.skipUnless(threading, 'Threading required for this test.') 285 lock = threading.Lock() 289 lock = threading.RLock() 293 lock = threading.Condition() 299 lock = threading.Semaphore() 309 lock = threading.BoundedSemaphore()
|
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test_smtplib.py | 15 import threading namespace 17 threading = None variable 43 @unittest.skipUnless(threading, 'Threading required for this test.') 48 self.evt = threading.Event() 53 self.thread = threading.Thread(target=server, args=servargs) 146 @unittest.skipUnless(threading, 'Threading required for this test.') 156 self.serv_evt = threading.Event() 157 self.client_evt = threading.Event( [all...] |
| test_contextlib.py | 9 import threading namespace 11 threading = None variable 270 @unittest.skipUnless(threading, 'Threading required for this test.') 285 lock = threading.Lock() 289 lock = threading.RLock() 293 lock = threading.Condition() 299 lock = threading.Semaphore() 309 lock = threading.BoundedSemaphore()
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_smtplib.py | 15 import threading namespace 17 threading = None variable 43 @unittest.skipUnless(threading, 'Threading required for this test.') 48 self.evt = threading.Event() 53 self.thread = threading.Thread(target=server, args=servargs) 146 @unittest.skipUnless(threading, 'Threading required for this test.') 156 self.serv_evt = threading.Event() 157 self.client_evt = threading.Event( [all...] |
| test_contextlib.py | 9 import threading namespace 11 threading = None variable 270 @unittest.skipUnless(threading, 'Threading required for this test.') 285 lock = threading.Lock() 289 lock = threading.RLock() 293 lock = threading.Condition() 299 lock = threading.Semaphore() 309 lock = threading.BoundedSemaphore()
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_smtplib.py | 15 import threading namespace 17 threading = None variable 43 @unittest.skipUnless(threading, 'Threading required for this test.') 48 self.evt = threading.Event() 53 self.thread = threading.Thread(target=server, args=servargs) 146 @unittest.skipUnless(threading, 'Threading required for this test.') 156 self.serv_evt = threading.Event() 157 self.client_evt = threading.Event( [all...] |
| test_contextlib.py | 9 import threading namespace 11 threading = None variable 270 @unittest.skipUnless(threading, 'Threading required for this test.') 285 lock = threading.Lock() 289 lock = threading.RLock() 293 lock = threading.Condition() 299 lock = threading.Semaphore() 309 lock = threading.BoundedSemaphore()
|
| /system/bt/service/ipc/ |
| ipc_handler_linux.h | 24 #include <base/threading/thread.h>
|
| /system/tpm/trunks/ |
| trunks_dbus_proxy.h | 23 #include <base/threading/platform_thread.h>
|
| background_command_transceiver_test.cc | 23 #include <base/threading/platform_thread.h> 24 #include <base/threading/thread.h>
|
| /external/autotest/client/cros/ |
| httpd_unittest.py | 9 import logging, os, sys, threading, urllib, unittest namespace 41 t = threading.Thread(target=_Spam).start()
|
| perf.py | 5 import logging, threading, time namespace 54 threading.Thread(target=self._monitor_performance_state).start()
|
| /external/autotest/client/site_tests/power_AudioDetector/ |
| power_AudioDetector.py | 5 import logging, threading, time namespace 31 thread = threading.Thread(target=self._play_audio,
|
| /external/autotest/server/cros/ |
| remote_command.py | 8 import threading namespace 12 class _HelperThread(threading.Thread):
|
| /external/chromium-trace/catapult/devil/devil/android/ |
| device_blacklist.py | 8 import threading namespace 15 self._blacklist_lock = threading.RLock()
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/ |
| interactive.py | 72 import threading namespace 86 writer = threading.Thread(target=writeall, args=(chan,))
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/ |
| file.py | 24 import threading namespace 39 self._lock = threading.Lock()
|
| /external/chromium-trace/catapult/third_party/typ/typ/fakes/ |
| test_result_server_fake.py | 19 import threading namespace 36 thread = threading.Thread(target=_run, args=(server,))
|