| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_file2k.py | 12 import threading namespace 14 threading = None variable 435 @unittest.skipUnless(threading, 'Threading required for this test.') 447 self._count_lock = threading.Lock() 491 t = threading.Thread(target=func)
|
| test_winreg.py | 7 threading = test_support.import_module("threading") variable 244 class VeryActiveThread(threading.Thread):
|
| test_sys.py | 318 import threading, thread namespace 324 entered_g = threading.Event() 325 leave_g = threading.Event() 336 t = threading.Thread(target=f123) 358 # threading.py are also in the thread's call stack.
|
| test_decimal.py | 38 import threading namespace 40 threading = None variable 1220 import threading namespace 1222 threading = None variable in class:DecimalUseOfContextTest [all...] |
| /build/tools/releasetools/ |
| blockimgdiff.py | 26 import threading namespace 369 lock = threading.Lock() 384 threads = [threading.Thread(target=diff_worker)
|
| common.py | 28 import threading namespace 947 th = threading.Thread(target=run) 989 lock = threading.Lock() 1018 threads = [threading.Thread(target=worker) [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
| test_thread.py | 23 from threading import Thread 25 from threading import currentThread 27 from threading import current_thread as currentThread
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/ |
| test_thread.py | 23 from threading import Thread 25 from threading import currentThread 27 from threading import current_thread as currentThread
|
| /external/chromium_org/chrome/tools/ |
| webforms_aggregator.py | 34 import threading namespace 595 class WorkerThread(threading.Thread): 606 threading.Thread.__init__(self) 614 names because it is overriding the 'run' method of the 'threading.Thread' 676 originalNumThreads = threading.active_count() 682 while threading.active_count() >= ( 685 while threading.active_count() > originalNumThreads:
|
| /external/chromium_org/media/tools/constrained_network_server/ |
| cns.py | 22 import threading namespace 72 self._port_lock = threading.RLock()
|
| /external/wpa_supplicant_8/wpa_supplicant/examples/ |
| wps-nfc.py | 13 import threading namespace 428 threading.Thread(target=llcp_worker, args=(llc,)).start()
|
| p2p-nfc.py | 13 import threading namespace 531 threading.Thread(target=llcp_worker, args=(llc,)).start()
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_winreg.py | 7 threading = test_support.import_module("threading") variable 244 class VeryActiveThread(threading.Thread):
|
| test_sys.py | 318 import threading, thread namespace 324 entered_g = threading.Event() 325 leave_g = threading.Event() 336 t = threading.Thread(target=f123) 358 # threading.py are also in the thread's call stack.
|
| test_decimal.py | 38 import threading namespace 40 threading = None variable 1220 import threading namespace 1222 threading = None variable in class:DecimalUseOfContextTest [all...] |
| /external/chromium_org/ppapi/native_client/tools/browser_tester/browsertester/ |
| server.py | 13 import threading namespace 260 self.rpc_lock = threading.Lock()
|
| /external/lldb/test/pexpect-2.4/examples/ |
| cgishell.cgi | 20 import socket, random, string, traceback, cgi, time, getopt, getpass, threading, resource, signal namespace 125 class roller (threading.Thread): 131 threading.Thread.__init__(self) 135 self.finished = threading.Event()
|
| /frameworks/base/core/tests/overlaytests/ |
| testrunner.py | 9 import threading namespace 50 class Ticker(threading.Thread): 58 threading.Thread.__init__(self) 98 self.cond_var = threading.Condition()
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| Queue.py | 5 import threading as _threading
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| Queue.py | 5 import threading as _threading
|
| /external/chromium_org/build/android/ |
| test_runner.py | 16 import threading namespace 815 for thread in threading.enumerate():
|
| /external/chromium_org/third_party/skia/gm/rebaseline_server/ |
| server.py | 24 import threading namespace 228 self.results_rlock = threading.RLock()
|
| /external/skia/gm/rebaseline_server/ |
| server.py | 24 import threading namespace 228 self.results_rlock = threading.RLock()
|
| /external/llvm/utils/ |
| llvm-compilers-check | 75 import threading 251 class Builder(threading.Thread):
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
| __init__.py | 43 import threading namespace 103 # If you don't want threading information in the log, set this to zero 206 _lock = threading.RLock() 284 self.threadName = threading.current_thread().name 689 self.lock = threading.RLock() [all...] |