/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_dummy_thread.py | 74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY)) 107 #Calling start_new_thread with a function that executes interrupt_main 111 self.assertRaises(KeyboardInterrupt, _thread.start_new_thread, 125 """Use to test _thread.start_new_thread() passes args properly.""" 129 _thread.start_new_thread(arg_tester, (testing_queue, True, True)) 133 _thread.start_new_thread(arg_tester, tuple(), {'queue':testing_queue, 138 _thread.start_new_thread(arg_tester, (testing_queue, True), {'arg2':True}) 162 _thread.start_new_thread(queue_mark,
|
test_thread.py | 43 thread.start_new_thread(self.task, (self.next_ident,)) 117 thread.start_new_thread(task, ()) 150 thread.start_new_thread(task, ()) 188 thread.start_new_thread(self.task2, (i,)) 244 thread.start_new_thread(thread1, ())
|
test_threaded_import.py | 67 thread.start_new_thread(task, ())
|
test_threadsignals.py | 68 thread.start_new_thread(send_signals, ())
|
lock_tests.py | 7 from thread import start_new_thread, get_ident namespace 43 start_new_thread(task, ()) 161 start_new_thread(f, ())
|
test_threading.py | 115 thread.start_new_thread(f, ()) 157 tid = thread.start_new_thread(f, (mutex,)) 303 thread.start_new_thread(waitingThread, ()) 433 thread.start_new_thread(background_thread, (evt,))
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_dummy_thread.py | 74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY)) 107 #Calling start_new_thread with a function that executes interrupt_main 111 self.assertRaises(KeyboardInterrupt, _thread.start_new_thread, 125 """Use to test _thread.start_new_thread() passes args properly.""" 129 _thread.start_new_thread(arg_tester, (testing_queue, True, True)) 133 _thread.start_new_thread(arg_tester, tuple(), {'queue':testing_queue, 138 _thread.start_new_thread(arg_tester, (testing_queue, True), {'arg2':True}) 162 _thread.start_new_thread(queue_mark,
|
test_thread.py | 43 thread.start_new_thread(self.task, (self.next_ident,)) 117 thread.start_new_thread(task, ()) 150 thread.start_new_thread(task, ()) 188 thread.start_new_thread(self.task2, (i,)) 244 thread.start_new_thread(thread1, ())
|
test_threaded_import.py | 67 thread.start_new_thread(task, ())
|
test_threadsignals.py | 68 thread.start_new_thread(send_signals, ())
|
lock_tests.py | 7 from thread import start_new_thread, get_ident namespace 43 start_new_thread(task, ()) 161 start_new_thread(f, ())
|
test_threading.py | 115 thread.start_new_thread(f, ()) 157 tid = thread.start_new_thread(f, (mutex,)) 303 thread.start_new_thread(waitingThread, ()) 433 thread.start_new_thread(background_thread, (evt,))
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
dummy_thread.py | 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock', 27 def start_new_thread(function, args, kwargs={}): function 28 """Dummy implementation of thread.start_new_thread(). 139 """Set _interrupt flag to True to have start_new_thread raise
|
telnetlib.py | 607 thread.start_new_thread(self.listener, ())
|
threading.py | 34 _start_new_thread = thread.start_new_thread [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
dummy_thread.py | 16 __all__ = ['error', 'start_new_thread', 'exit', 'get_ident', 'allocate_lock', 27 def start_new_thread(function, args, kwargs={}): function 28 """Dummy implementation of thread.start_new_thread(). 139 """Set _interrupt flag to True to have start_new_thread raise
|
telnetlib.py | 607 thread.start_new_thread(self.listener, ())
|
/external/linux-tools-perf/scripts/python/ |
sctop.py | 42 thread.start_new_thread(print_syscall_totals, (interval,))
|
/external/clang/tools/scan-view/ |
scan-view | 126 t = thread.start_new_thread(start_browser, (port,options))
|
/external/chromium_org/third_party/libxml/src/ |
regressions.py | 172 th1 = thread.start_new_thread(readPfile, (pout, outfile, th1Flag)) 173 th2 = thread.start_new_thread(readPfile, (perr, errfile, th2Flag))
|
/external/skia/gm/rebaseline_server/ |
server.py | 235 arg_tuple = (self._reload_seconds,) # start_new_thread needs a tuple, 237 thread.start_new_thread(self._result_loader, arg_tuple)
|
/external/sonivox/jet_tools/JetCreator/ |
JetDialogs.py | 328 thread.start_new_thread(self.UpdateMaxMbtThread, ())
436 self.PlayerThread = thread.start_new_thread(self.Player .Start, ())
452 self.PlayerThread = thread.start_new_thread(self.Player .Start, ())
[all...] |
JetAudition.py | 168 thread.start_new_thread(self.PlaySegs, ())
|
/external/chromium_org/ppapi/native_client/tools/browser_tester/ |
browser_tester.py | 268 thread.start_new_thread(Serve, ())
|
/external/chromium_org/third_party/tlslite/scripts/ |
tls.py | [all...] |