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

1 2 3 4 5 6 7 8 91011

  /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...]
test_fork1.py 12 threading = import_module('threading') variable
32 import_started = threading.Event()
43 t = threading.Thread(target=importer)
test_threadedtempfile.py 22 threading = import_module('threading') variable
27 startEvent = threading.Event()
29 class TempFileGreedy(threading.Thread):
test_threading_local.py 9 threading = test_support.import_module('threading') variable
32 t = threading.Thread(target=target, args=(local, weaklist))
52 # of a threading.local derived class, the per-thread dictionary
68 t = threading.Thread(target=f, args=(i,))
81 e1 = threading.Event()
82 e2 = threading.Event()
100 t = threading.Thread(target=f)
131 e1 = threading.Event()
132 e2 = threading.Event(
    [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...]
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...]
test_fork1.py 12 threading = import_module('threading') variable
32 import_started = threading.Event()
43 t = threading.Thread(target=importer)
test_threadedtempfile.py 22 threading = import_module('threading') variable
27 startEvent = threading.Event()
29 class TempFileGreedy(threading.Thread):
test_threading_local.py 9 threading = test_support.import_module('threading') variable
32 t = threading.Thread(target=target, args=(local, weaklist))
52 # of a threading.local derived class, the per-thread dictionary
68 t = threading.Thread(target=f, args=(i,))
81 e1 = threading.Event()
82 e2 = threading.Event()
100 t = threading.Thread(target=f)
131 e1 = threading.Event()
132 e2 = threading.Event(
    [all...]
  /external/chromium_org/third_party/mesa/src/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);
u_slab.c 124 enum util_slab_threading threading)
126 pool->threading = threading;
128 if (threading) {
140 enum util_slab_threading threading)
156 util_slab_set_thread_safety(pool, threading);
  /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_org/third_party/WebKit/Tools/Scripts/webkitpy/common/thread/
threadedmessagequeue.py 29 import threading namespace
36 self._lock = threading.Lock()
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
msgutil.py 42 import threading namespace
102 class MessageReceiver(threading.Thread):
125 threading.Thread.__init__(self)
174 class MessageSender(threading.Thread):
191 threading.Thread.__init__(self)
208 condition = threading.Condition()
216 self._queue.put((message, threading.Condition()))
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
msgutil.py 42 import threading namespace
102 class MessageReceiver(threading.Thread):
125 threading.Thread.__init__(self)
174 class MessageSender(threading.Thread):
191 threading.Thread.__init__(self)
208 condition = threading.Condition()
216 self._queue.put((message, threading.Condition()))
  /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_org/build/android/pylib/utils/
timeout_retry.py 8 import threading namespace
41 name = 'TimeoutThread-for-%s' % threading.current_thread().name
  /external/chromium_org/third_party/mesa/src/scons/
fixes.py 6 import threading namespace
9 spawn_lock = threading.Lock()
  /external/mesa3d/scons/
fixes.py 6 import threading namespace
9 spawn_lock = threading.Lock()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 6 import threading namespace
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_errno.py 6 import threading namespace
8 threading = None variable
29 if threading:
42 t = threading.Thread(target=_worker)
71 t = threading.Thread(target=_worker)

Completed in 679 milliseconds

1 2 3 4 5 6 7 8 91011