/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_asyncore.py | 17 import threading namespace 19 threading = None variable 353 @unittest.skipUnless(threading, 'Threading required for this test.') 356 evt = threading.Event() 363 t = threading.Thread(target=capture_server, args=args) 708 @unittest.skipUnless(threading, 'Threading required for this test.') 713 t = threading.Thread(target=lambda: asyncore.loop(timeout=0.1, count=500))
|
test_file2k.py | 12 import threading namespace 14 threading = None variable 435 @unittest.skipUnless(threading, 'Threading required for this test.') 447 self._count_lock = threading.Lock() 491 t = threading.Thread(target=func)
|
test_ssl.py | 401 import threading namespace 407 class ThreadedEchoServer(threading.Thread): 409 class ConnectionHandler(threading.Thread): 421 threading.Thread.__init__(self) 558 threading.Thread.__init__(self) 562 self.start(threading.Event()) 572 threading.Thread.start(self) 599 class AsyncoreEchoServer(threading.Thread): 671 threading.Thread.__init__(self) 678 self.start(threading.Event() [all...] |
test_sys.py | 318 import threading, thread namespace 324 entered_g = threading.Event() 325 leave_g = threading.Event() 336 t = threading.Thread(target=f123) 358 # threading.py are also in the thread's call stack.
|
test_ftplib.py | 21 threading = test_support.import_module('threading') variable 207 class DummyFTPServer(asyncore.dispatcher, threading.Thread): 212 threading.Thread.__init__(self) 218 self.active_lock = threading.Lock() 223 self.__flag = threading.Event() 224 threading.Thread.start(self) 668 self.evt = threading.Event() 672 threading.Thread(target=self.server, args=(self.evt,self.sock)).start()
|
test_logging.py | 49 import threading namespace 51 threading = None variable 902 self.finished = threading.Event() 916 @unittest.skipUnless(threading, 'Threading required for this test.') 928 threading.Thread(target=self.tcpserver.serve_until_stopped)] [all...] |
test_xmlrpc.py | 17 import threading namespace 19 threading = None variable 417 @unittest.skipUnless(threading, 'Threading required for this test.') 427 self.evt = threading.Event() 430 threading.Thread(target=self.threadFunc, args=serv_args).start() 751 if threading: 754 # Without threading, http_server() and http_multi_server() will not 778 @unittest.skipUnless(threading, 'Threading required for this test.' [all...] |
/prebuilts/python/linux-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
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_asyncore.py | 17 import threading namespace 19 threading = None variable 353 @unittest.skipUnless(threading, 'Threading required for this test.') 356 evt = threading.Event() 363 t = threading.Thread(target=capture_server, args=args) 708 @unittest.skipUnless(threading, 'Threading required for this test.') 713 t = threading.Thread(target=lambda: asyncore.loop(timeout=0.1, count=500))
|
test_file2k.py | 12 import threading namespace 14 threading = None variable 435 @unittest.skipUnless(threading, 'Threading required for this test.') 447 self._count_lock = threading.Lock() 491 t = threading.Thread(target=func)
|
test_ssl.py | 401 import threading namespace 407 class ThreadedEchoServer(threading.Thread): 409 class ConnectionHandler(threading.Thread): 421 threading.Thread.__init__(self) 558 threading.Thread.__init__(self) 562 self.start(threading.Event()) 572 threading.Thread.start(self) 599 class AsyncoreEchoServer(threading.Thread): 671 threading.Thread.__init__(self) 678 self.start(threading.Event() [all...] |
test_sys.py | 318 import threading, thread namespace 324 entered_g = threading.Event() 325 leave_g = threading.Event() 336 t = threading.Thread(target=f123) 358 # threading.py are also in the thread's call stack.
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/ |
mux.py | 45 import threading namespace 510 self._write_condition = threading.Condition() 512 self._read_condition = threading.Condition() 669 self._send_quota_condition = threading.Condition() 671 self._write_inner_frame_semaphore = threading.Semaphore() 854 class _PhysicalConnectionWriter(threading.Thread): 868 threading.Thread.__init__(self) 874 self._deque_condition = threading.Condition() [all...] |
/external/chromium_org/chrome/test/chromedriver/test/ |
run_py_tests.py | 16 import threading namespace 712 did_load_event = threading.Event() 719 thread = threading.Thread(target=RunServer) [all...] |
/external/chromium_org/net/tools/testserver/ |
testserver.py | 32 import threading namespace 120 self.thread = threading.Thread(target = self.serve_forever, [all...] |
/external/chromium_org/sync/tools/testserver/ |
chromiumsync.py | 21 import threading namespace [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/ |
run_webkit_tests_integrationtest.py | 42 import threading namespace [all...] |
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
mux.py | 45 import threading namespace 550 self._write_condition = threading.Condition() 553 self._read_condition = threading.Condition() 831 self._send_condition = threading.Condition() 839 self._write_inner_frame_semaphore = threading.Semaphore() [all...] |
/external/sonivox/jet_tools/JetCreator/ |
eas.py | 4 import threading
namespace 582 self.lock = threading.RLock()
[all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
PyShell.py | 11 import threading namespace 497 threading.Thread(target=self.__request_interrupt).start() [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/logging/ |
__init__.py | 43 import threading namespace 103 # If you don't want threading information in the log, set this to zero 206 _lock = threading.RLock() 284 self.threadName = threading.current_thread().name 689 self.lock = threading.RLock() [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
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/sqlite3/test/ |
dbapi.py | 28 import threading namespace 30 threading = None variable 478 @unittest.skipUnless(threading, 'This test requires threading.') 501 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 519 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 537 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 555 t = threading.Thread(target=run, kwargs={"con": self.con, "errors": errors}) 573 t = threading.Thread(target=run, kwargs={"cur": self.cur, "errors": errors}) 591 t = threading.Thread(target=run, kwargs={"cur": self.cur, "errors": errors} [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
PyShell.py | 11 import threading namespace 497 threading.Thread(target=self.__request_interrupt).start() [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/logging/ |
__init__.py | 43 import threading namespace 103 # If you don't want threading information in the log, set this to zero 206 _lock = threading.RLock() 284 self.threadName = threading.current_thread().name 689 self.lock = threading.RLock() [all...] |