HomeSort by relevance Sort by last modified time
    Searched defs:threading (Results 126 - 150 of 197) sorted by null

1 2 3 4 56 7 8

  /build/tools/releasetools/
common.py 28 import threading namespace
910 lock = threading.Lock()
939 threads = [threading.Thread(target=worker)
  /external/chromium-trace/trace-viewer/examples/stream_server/
standalone.py 95 THREADING
123 import threading namespace
289 self.__ws_is_shut_down = threading.Event()
815 class ThreadMonitor(threading.Thread):
819 threading.Thread.__init__(self, name='ThreadMonitor')
828 for thread in threading.enumerate():
832 threading.active_count(),
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
standalone.py 95 THREADING
123 import threading namespace
285 self.__ws_is_shut_down = threading.Event()
811 class ThreadMonitor(threading.Thread):
815 threading.Thread.__init__(self, name='ThreadMonitor')
824 for thread in threading.enumerate():
828 threading.active_count(),
    [all...]
  /external/clang/tools/scan-view/
ScanView.py 10 import threading namespace
85 class ReporterThread(threading.Thread):
87 threading.Thread.__init__(self)
  /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/darwin-x86/2.7.5/lib/python2.7/logging/
config.py 32 import threading namespace
817 raise NotImplementedError("listen() needs threading to work")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
subprocess.py 417 import threading namespace
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bz2.py 12 import threading namespace
14 threading = None variable
300 @unittest.skipUnless(threading, 'Threading required for this test.')
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
test_gc.py 9 import threading namespace
11 threading = None variable
308 @unittest.skipUnless(threading, "test meaningless on builds without threads")
358 t = threading.Thread(target=run_thread)
test_httpservers.py 26 threading = test_support.import_module('threading') variable
50 class TestServerThread(threading.Thread):
52 threading.Thread.__init__(self)
74 self.server_started = threading.Event()
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))
test_smtplib.py 15 import threading namespace
17 threading = None variable
43 @unittest.skipUnless(threading, 'Threading required for this test.')
48 self.evt = threading.Event()
53 self.thread = threading.Thread(target=server, args=servargs)
146 @unittest.skipUnless(threading, 'Threading required for this test.')
156 self.serv_evt = threading.Event()
157 self.client_evt = threading.Event(
    [all...]
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...]
  /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:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/
config.py 32 import threading namespace
817 raise NotImplementedError("listen() needs threading to work")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
subprocess.py 417 import threading namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bz2.py 12 import threading namespace
14 threading = None variable
300 @unittest.skipUnless(threading, 'Threading required for this test.')
309 threads = [threading.Thread(target=comp) for i in range(nthreads)]
test_gc.py 9 import threading namespace
11 threading = None variable
308 @unittest.skipUnless(threading, "test meaningless on builds without threads")
358 t = threading.Thread(target=run_thread)
test_httpservers.py 26 threading = test_support.import_module('threading') variable
50 class TestServerThread(threading.Thread):
52 threading.Thread.__init__(self)
74 self.server_started = threading.Event()
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))
test_smtplib.py 15 import threading namespace
17 threading = None variable
43 @unittest.skipUnless(threading, 'Threading required for this test.')
48 self.evt = threading.Event()
53 self.thread = threading.Thread(target=server, args=servargs)
146 @unittest.skipUnless(threading, 'Threading required for this test.')
156 self.serv_evt = threading.Event()
157 self.client_evt = threading.Event(
    [all...]
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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
standalone.py 115 THREADING
143 import threading namespace
384 self.__ws_is_shut_down = threading.Event()
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
input.py 23 import threading namespace
565 parallel_state.condition = threading.Condition()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_all.py 461 from threading import Thread, currentThread
464 from threading import Thread, current_thread
545 import threading namespace
546 get_new_path.mutex=threading.Lock()
547 del threading

Completed in 289 milliseconds

1 2 3 4 56 7 8