HomeSort by relevance Sort by last modified time
    Searched refs:threading (Results 1 - 25 of 524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/frontend/
thread_local.py 1 import threading namespace
3 _store = threading.local()
  /external/autotest/site_utils/rpm_control_system/
test_client.py 5 import threading namespace
24 threading.Thread(target=queue_request,
26 threading.Thread(target=queue_request,
28 threading.Thread(target=queue_request,
30 threading.Thread(target=queue_request,
32 threading.Thread(target=queue_request,
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
daemonserver.py 16 import threading namespace
30 thread = threading.Thread(target=self.serve_forever)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
threaded_import_hangers.py 10 import threading namespace
21 class Worker(threading.Thread):
23 threading.Thread.__init__(self)
test_threading.py 1 # Very rudimentary test of threading module
11 threading = test.test_support.import_module('threading') variable
31 class TestThread(threading.Thread):
33 threading.Thread.__init__(self, name=name)
82 sema = threading.BoundedSemaphore(value=3)
83 mutex = threading.RLock()
109 self.assertFalse(threading.currentThread().ident is None)
111 ident.append(threading.currentThread().ident)
113 done = threading.Event(
    [all...]
test_capi.py 12 import threading namespace
15 threading = None variable
18 @unittest.skipUnless(threading, 'Threading required for this test.')
65 context.lock = threading.Lock()
66 context.event = threading.Event()
69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
101 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
121 t = threading.Thread(target=target
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
threaded_import_hangers.py 10 import threading namespace
21 class Worker(threading.Thread):
23 threading.Thread.__init__(self)
test_threading.py 1 # Very rudimentary test of threading module
11 threading = test.test_support.import_module('threading') variable
31 class TestThread(threading.Thread):
33 threading.Thread.__init__(self, name=name)
82 sema = threading.BoundedSemaphore(value=3)
83 mutex = threading.RLock()
109 self.assertFalse(threading.currentThread().ident is None)
111 ident.append(threading.currentThread().ident)
113 done = threading.Event(
    [all...]
test_capi.py 12 import threading namespace
15 threading = None variable
18 @unittest.skipUnless(threading, 'Threading required for this test.')
65 context.lock = threading.Lock()
66 context.event = threading.Event()
69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
101 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
121 t = threading.Thread(target=target
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 10 import threading namespace
21 class Worker(threading.Thread):
23 threading.Thread.__init__(self)
test_threading.py 1 # Very rudimentary test of threading module
11 threading = test.test_support.import_module('threading') variable
31 class TestThread(threading.Thread):
33 threading.Thread.__init__(self, name=name)
82 sema = threading.BoundedSemaphore(value=3)
83 mutex = threading.RLock()
109 self.assertFalse(threading.currentThread().ident is None)
111 ident.append(threading.currentThread().ident)
113 done = threading.Event(
    [all...]
test_capi.py 12 import threading namespace
15 threading = None variable
18 @unittest.skipUnless(threading, 'Threading required for this test.')
65 context.lock = threading.Lock()
66 context.event = threading.Event()
69 t = threading.Thread(target=self.pendingcalls_thread, args = (context,))
101 @unittest.skipUnless(threading and thread, 'Threading required for this test.')
121 t = threading.Thread(target=target
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
threaded_import_hangers.py 10 import threading namespace
21 class Worker(threading.Thread):
23 threading.Thread.__init__(self)
test_threading.py 1 # Very rudimentary test of threading module
11 threading = test.test_support.import_module('threading') variable
31 class TestThread(threading.Thread):
33 threading.Thread.__init__(self, name=name)
82 sema = threading.BoundedSemaphore(value=3)
83 mutex = threading.RLock()
109 self.assertFalse(threading.currentThread().ident is None)
111 ident.append(threading.currentThread().ident)
113 done = threading.Event(
    [all...]
  /external/autotest/site_utils/
stats_poller.py 7 import threading namespace
25 threads.append(threading.Thread(target=f, args=(sam,)))
29 threads.append(threading.Thread(target=f, args=(drone,)))
33 threads.append(threading.Thread(target=f, args=(devserver,)))
36 threads.append(threading.Thread(target=f))
45 while threading.active_count() > 0:
  /external/mesa3d/src/gallium/auxiliary/util/
u_slab.h 69 enum util_slab_threading threading; member in struct:util_slab_mempool
77 enum util_slab_threading threading);
82 enum util_slab_threading threading);
  /external/chromium-trace/catapult/devil/devil/utils/lazy/
weak_constant.py 5 import threading namespace
18 self._lock = threading.Lock()
  /external/autotest/server/cros/
stress_unittest.py 5 import threading namespace
27 event = threading.Event()
43 event = threading.Event()
57 event = threading.Event()
68 event = threading.Event()
87 start_event = threading.Event()
88 ran_event = threading.Event()
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 45 import threading namespace
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
54 from threading import Event
61 class DummyProcess(threading.Thread):
64 threading.Thread.__init__(self, group, target, name, args, kwargs)
75 threading.Thread.start(self)
88 class Condition(threading._Condition):
89 notify_all = threading._Condition.notify_all.im_func
96 current_process = threading.current_thread
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/dummy/
__init__.py 45 import threading namespace
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
54 from threading import Event
61 class DummyProcess(threading.Thread):
64 threading.Thread.__init__(self, group, target, name, args, kwargs)
75 threading.Thread.start(self)
88 class Condition(threading._Condition):
89 notify_all = threading._Condition.notify_all.im_func
96 current_process = threading.current_thread
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 45 import threading namespace
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
54 from threading import Event
61 class DummyProcess(threading.Thread):
64 threading.Thread.__init__(self, group, target, name, args, kwargs)
75 threading.Thread.start(self)
88 class Condition(threading._Condition):
89 notify_all = threading._Condition.notify_all.im_func
96 current_process = threading.current_thread
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/
__init__.py 45 import threading namespace
53 from threading import Lock, RLock, Semaphore, BoundedSemaphore
54 from threading import Event
61 class DummyProcess(threading.Thread):
64 threading.Thread.__init__(self, group, target, name, args, kwargs)
75 threading.Thread.start(self)
88 class Condition(threading._Condition):
89 notify_all = threading._Condition.notify_all.im_func
96 current_process = threading.current_thread
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
threadinglocal.py 9 import threading namespace
16 local = threading.local
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_tools.py 6 import threading namespace
18 t = threading.Thread(target = httpd.handle_request)
  /external/mesa3d/scons/
fixes.py 6 import threading namespace
9 spawn_lock = threading.Lock()

Completed in 586 milliseconds

1 2 3 4 5 6 7 8 91011>>