HomeSort by relevance Sort by last modified time
    Searched refs:threading (Results 76 - 100 of 261) sorted by null

1 2 34 5 6 7 8 91011

  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/
vp8dx.mk 37 VP8_DX_SRCS-$(CONFIG_MULTITHREAD) += decoder/threading.c
  /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 namespace
    [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 namespace
    [all...]
  /external/chromium_org/v8/tools/testrunner/network/
network_execution.py 32 import threading namespace
67 self.tests_lock = threading.Lock()
82 self.initialization_lock = threading.Lock()
85 self.local_receiver_thread = threading.Thread(
146 thread = threading.Thread(target=self._TalkToPeer, args=[p])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
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
pool.py 41 import threading namespace
161 self._worker_handler = threading.Thread(
170 self._task_handler = threading.Thread(
178 self._result_handler = threading.Thread(
320 thread = threading.current_thread()
333 thread = threading.current_thread()
372 thread = threading.current_thread()
492 if threading.current_thread() is not worker_handler:
503 if threading.current_thread() is not task_handler:
507 if threading.current_thread() is not result_handler
    [all...]
managers.py 45 import threading namespace
167 self.mutex = threading.RLock()
182 t = threading.Thread(target=self.handle_request, args=(c,))
230 threading.current_thread().name)
280 threading.current_thread().name)
293 threading.current_thread().name)
421 threading.current_thread().name = name
740 if threading.current_thread().name != 'MainThread':
741 name += '|' + threading.current_thread().name
754 threading.current_thread().name
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socketserver.py 20 import threading namespace
22 threading = None variable
69 @unittest.skipUnless(threading, 'Threading required for this test.')
142 t = threading.Thread(
298 t = threading.Thread(
test_queue.py 7 threading = test_support.import_module('threading') variable
12 class _TriggerThread(threading.Thread):
16 self.startedEvent = threading.Event()
17 threading.Thread.__init__(self)
88 self.cumlock = threading.Lock()
156 threading.Thread(target=self.worker, args=(q,)).start()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
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
pool.py 41 import threading namespace
161 self._worker_handler = threading.Thread(
170 self._task_handler = threading.Thread(
178 self._result_handler = threading.Thread(
320 thread = threading.current_thread()
333 thread = threading.current_thread()
372 thread = threading.current_thread()
492 if threading.current_thread() is not worker_handler:
503 if threading.current_thread() is not task_handler:
507 if threading.current_thread() is not result_handler
    [all...]
managers.py 45 import threading namespace
167 self.mutex = threading.RLock()
182 t = threading.Thread(target=self.handle_request, args=(c,))
230 threading.current_thread().name)
280 threading.current_thread().name)
293 threading.current_thread().name)
421 threading.current_thread().name = name
740 if threading.current_thread().name != 'MainThread':
741 name += '|' + threading.current_thread().name
754 threading.current_thread().name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_socketserver.py 20 import threading namespace
22 threading = None variable
69 @unittest.skipUnless(threading, 'Threading required for this test.')
142 t = threading.Thread(
298 t = threading.Thread(
test_queue.py 7 threading = test_support.import_module('threading') variable
12 class _TriggerThread(threading.Thread):
16 self.startedEvent = threading.Event()
17 threading.Thread.__init__(self)
88 self.cumlock = threading.Lock()
156 threading.Thread(target=self.worker, args=(q,)).start()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 37 import threading namespace
109 print>>erf, 'Thread: %s' % threading.currentThread().getName()
129 self.sockthread = threading.currentThread()
152 s = self.location + " " + str(threading.currentThread().getName())
221 if threading.currentThread() != self.sockthread:
222 cvar = threading.Condition()
231 if threading.currentThread() != self.sockthread:
232 cvar = threading.Condition()
297 if threading.currentThread() is self.sockthread:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
rpc.py 37 import threading namespace
109 print>>erf, 'Thread: %s' % threading.currentThread().getName()
129 self.sockthread = threading.currentThread()
152 s = self.location + " " + str(threading.currentThread().getName())
221 if threading.currentThread() != self.sockthread:
222 cvar = threading.Condition()
231 if threading.currentThread() != self.sockthread:
232 cvar = threading.Condition()
297 if threading.currentThread() is self.sockthread:
  /external/chromium_org/build/android/pylib/
chrome_test_server_spawner.py 20 import threading namespace
102 class TestServerThread(threading.Thread):
114 threading.Thread.__init__(self)
115 self.wait_event = threading.Event()
318 ready_event = threading.Event()
405 listener_thread = threading.Thread(target=self._Listen)
  /development/testrunner/
run_command.py 22 import threading namespace
120 t = threading.Thread(target=Run)
  /external/chromium_org/build/android/pylib/utils/
reraiser_thread.py 10 import threading namespace
25 thread: a threading.Thread instance.
38 class ReraiserThread(threading.Thread):
  /external/chromium_org/native_client_sdk/src/tools/tests/
httpd_test.py 10 import threading namespace
56 thread = threading.Thread(target=RunTest._SubprocessThread,
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
reflectionhandler.py 39 import threading namespace
103 threading.Thread(target=lambda: self.server.shutdown()).start()
  /external/chromium_org/third_party/android_testrunner/
run_command.py 23 import threading namespace
126 t = threading.Thread(target=Run)
  /external/chromium_org/third_party/skia/tools/
git-sync-deps 36 import threading namespace
186 thread = threading.Thread(None, function, None, args)
svn.py 12 import threading namespace
58 self._rlock = threading.RLock()
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_websocket.py 8 import threading namespace
72 self._thread = threading.Thread(target=self._AsyncDispatcher)

Completed in 1905 milliseconds

1 2 34 5 6 7 8 91011