| /prebuilts/clang/host/linux-x86/clang-4479392/share/clang/ |
| run-find-all-symbols.py | 35 import threading 101 t = threading.Thread(target=run_find_all_symbols,
|
| /prebuilts/clang/host/linux-x86/clang-4579689/share/clang/ |
| run-find-all-symbols.py | 35 import threading 101 t = threading.Thread(target=run_find_all_symbols,
|
| /prebuilts/clang/host/linux-x86/clang-4630689/share/clang/ |
| run-find-all-symbols.py | 35 import threading 101 t = threading.Thread(target=run_find_all_symbols,
|
| /prebuilts/clang/host/linux-x86/clang-4639204/share/clang/ |
| run-find-all-symbols.py | 35 import threading 101 t = threading.Thread(target=run_find_all_symbols,
|
| /prebuilts/clang/host/linux-x86/clang-4691093/share/clang/ |
| run-find-all-symbols.py | 35 import threading 101 t = threading.Thread(target=run_find_all_symbols,
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_poplib.py | 17 threading = test_support.import_module('threading') variable 107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread): 112 threading.Thread.__init__(self) 118 self.active_lock = threading.Lock() 123 self.__flag = threading.Event() 124 threading.Thread.start(self) 282 self.evt = threading.Event() 286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
|
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test_poplib.py | 17 threading = test_support.import_module('threading') variable 107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread): 112 threading.Thread.__init__(self) 118 self.active_lock = threading.Lock() 123 self.__flag = threading.Event() 124 threading.Thread.start(self) 282 self.evt = threading.Event() 286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_poplib.py | 17 threading = test_support.import_module('threading') variable 107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread): 112 threading.Thread.__init__(self) 118 self.active_lock = threading.Lock() 123 self.__flag = threading.Event() 124 threading.Thread.start(self) 282 self.evt = threading.Event() 286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_poplib.py | 17 threading = test_support.import_module('threading') variable 107 class DummyPOP3Server(asyncore.dispatcher, threading.Thread): 112 threading.Thread.__init__(self) 118 self.active_lock = threading.Lock() 123 self.__flag = threading.Event() 124 threading.Thread.start(self) 282 self.evt = threading.Event() 286 self.thread = threading.Thread(target=self.server, args=(self.evt,self.sock))
|
| /tools/test/connectivity/acts/framework/acts/controllers/sl4a_lib/ |
| rpc_connection.py | 18 import threading 55 self._ticket_lock = threading.Lock()
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| 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
[all...] |
| /external/autotest/client/cros/faft/utils/ |
| firmware_check_keys.py | 8 from threading import Timer
|
| /external/libvpx/libvpx/vp8/ |
| vp8dx.mk | 37 VP8_DX_SRCS-$(CONFIG_MULTITHREAD) += decoder/threading.c
|
| /external/ltp/testcases/network/nfsv4/acl/ |
| test_long_acl.py | 9 import threading
|
| /external/python/cpython2/Lib/ |
| 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 [all...] |
| /external/python/cpython2/Lib/test/ |
| test_poll.py | 7 import threading 9 threading = None variable 179 @unittest.skipUnless(threading, 'Threading required for this test.') 194 t = threading.Thread(target=pollster.poll)
|
| /external/python/cpython3/Lib/ |
| 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 [all...] |
| /external/python/cpython3/Lib/multiprocessing/ |
| resource_sharer.py | 15 import threading 67 self._lock = threading.Lock() 119 self._lock = threading.Lock() 132 t = threading.Thread(target=self._serve)
|
| /external/python/cpython3/Lib/test/ |
| test_poll.py | 8 import threading 10 threading = None variable 182 @unittest.skipUnless(threading, 'Threading required for this test.') 197 t = threading.Thread(target=pollster.poll)
|
| /external/tensorflow/tensorflow/python/training/ |
| coordinator.py | 22 import threading 146 self._lock = threading.Lock() 148 self._stop_event = threading.Event() 341 threads: List of `threading.Threads`. The started threads to join in 412 class LooperThread(threading.Thread):
|
| /external/v8/tools/foozzie/ |
| v8_commands.py | 10 from threading import Event, Timer
|
| /prebuilts/gdb/darwin-x86/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 [all...] |
| /prebuilts/gdb/linux-x86/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 [all...] |
| /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 [all...] |
| /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 [all...] |