| /external/chromium-trace/catapult/telemetry/telemetry/internal/backends/chrome_inspector/ |
| websocket_unittest.py | 9 import threading namespace 43 threading.Thread(target=httpd.handle_request).start() 51 threading.Thread(target=httpd.handle_request).start()
|
| /external/chromium-trace/catapult/third_party/Paste/paste/util/ |
| threadedprint.py | 30 ``threading.currentThread().getName()``, a string (typically something 63 import threading namespace 92 def write(self, v, currentThread=threading.currentThread): 103 name = threading.currentThread().getName() 111 name = threading.currentThread().getName() 134 currentThread=threading.currentThread): 140 currentThread=threading.currentThread): 192 def read(self, size=None, currentThread=threading.currentThread): 216 currentThread=threading.currentThread): 222 currentThread=threading.currentThread) [all...] |
| /external/google-benchmark/ |
| mingw.py | 80 threading = arch.setdefault(value[2].strip(), {}) 81 exceptions = threading.setdefault(value[3].strip(), {}) 172 def root(location = None, arch = None, version = None, threading = None, 180 if not (arch and version and threading and exceptions and revision): 191 if not threading: 194 threading = 'posix' 196 threading = 'win32' 198 threading = keys[0] 200 keys = versions[version][arch][threading].keys() 208 revision = max(versions[version][arch][threading][exceptions].keys() [all...] |
| /external/autotest/client/cros/ |
| dark_resume_listener.py | 6 import threading namespace 41 thread = threading.Thread(None, loop_runner)
|
| power_strip.py | 5 import telnetlib, threading, time namespace 9 # avoid threading and address space conflicts 30 threading.Timer(delay, self._do_command, (command, outlet)).start()
|
| /external/autotest/server/site_tests/platform_InternalDisplay/ |
| platform_InternalDisplay.py | 5 import logging, threading namespace 25 thread = threading.Thread(target = self.host.suspend)
|
| /external/chromium-trace/catapult/devil/devil/android/ |
| device_temp_file.py | 11 import threading namespace 48 threading.Thread(
|
| /external/chromium-trace/catapult/third_party/Paste/paste/evalexception/ |
| evalcontext.py | 5 import threading namespace 10 exec_lock = threading.Lock()
|
| /external/chromium-trace/catapult/third_party/gsutil/gslib/ |
| parallelism_framework_util.py | 19 import threading namespace 39 self.lock = threading.Lock()
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/ |
| keyring_storage.py | 22 import threading namespace 61 self._lock = threading.Lock()
|
| /external/valgrind/none/tests/amd64-solaris/ |
| coredump_single_thread_sse.post.exp | 4 threading model: native threads
|
| /external/valgrind/none/tests/x86-solaris/ |
| coredump_single_thread_sse.post.exp | 4 threading model: native threads
|
| /external/autotest/site_utils/ |
| metadata_reporter.py | 14 import threading namespace 40 _report_lock = threading.Lock() 41 _abort = threading.Event() 42 _queue_full = threading.Event() 151 reporting_thread = threading.Thread(target=_run)
|
| /external/chromium-trace/catapult/third_party/coverage/coverage/ |
| pytracer.py | 43 # The threading module to use, if any. 44 self.threading = None 128 if self.threading: 129 self.thread = self.threading.currentThread() 137 if self.threading and self.thread != self.threading.currentThread():
|
| /system/core/adb/ |
| test_adb.py | 30 import threading namespace 107 stdout_event = threading.Event() 108 stdout_thread = threading.Thread( 114 stderr_event = threading.Event() 115 stderr_thread = threading.Thread(
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_asynchat.py | 8 import threading namespace 10 threading = None variable 15 if threading: 16 class echo_server(threading.Thread): 22 threading.Thread.__init__(self) 90 event = threading.Event() 99 @unittest.skipUnless(threading, 'Threading required for this test.') 110 event = threading.Event() 214 s.start_resend_event = threading.Event( [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test_asynchat.py | 8 import threading namespace 10 threading = None variable 15 if threading: 16 class echo_server(threading.Thread): 22 threading.Thread.__init__(self) 90 event = threading.Event() 99 @unittest.skipUnless(threading, 'Threading required for this test.') 110 event = threading.Event() 214 s.start_resend_event = threading.Event( [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_asynchat.py | 8 import threading namespace 10 threading = None variable 15 if threading: 16 class echo_server(threading.Thread): 22 threading.Thread.__init__(self) 90 event = threading.Event() 99 @unittest.skipUnless(threading, 'Threading required for this test.') 110 event = threading.Event() 214 s.start_resend_event = threading.Event( [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_asynchat.py | 8 import threading namespace 10 threading = None variable 15 if threading: 16 class echo_server(threading.Thread): 22 threading.Thread.__init__(self) 90 event = threading.Event() 99 @unittest.skipUnless(threading, 'Threading required for this test.') 110 event = threading.Event() 214 s.start_resend_event = threading.Event( [all...] |
| /external/autotest/client/common_lib/cros/ |
| retry.py | 9 import threading namespace 156 is_main_thread = isinstance(threading.current_thread(), 157 threading._MainThread)
|
| /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/ |
| mock_lorgnette.py | 12 import threading namespace 92 class MockLorgnette(threading.Thread): 97 threading.Thread.__init__(self)
|
| /external/autotest/client/site_tests/network_ShillInitScripts/ |
| mock_flimflam.py | 7 import threading namespace 116 class MockFlimflam(threading.Thread): 121 threading.Thread.__init__(self)
|
| /external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/test/ |
| miniserver.py | 6 import threading namespace 32 self.__is_shut_down = threading.Event() 98 threading.Thread(target=httpd.serve_forever).start()
|
| /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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...] |