Searched refs:start_new_thread (Results 1 – 25 of 39) sorted by relevance
12
/external/python/cpython2/Lib/test/ |
D | test_dummy_thread.py | 74 _thread.start_new_thread(delay_unlock,(self.lock, DELAY)) 111 self.assertRaises(KeyboardInterrupt, _thread.start_new_thread, 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,
|
D | test_thread.py | 47 thread.start_new_thread(self.task, (self.next_ident,)) 122 thread.start_new_thread(task, ()) 156 thread.start_new_thread(task, ()) 193 thread.start_new_thread(self.task2, (i,)) 258 thread.start_new_thread(thread1, ())
|
D | test_threaded_import.py | 67 thread.start_new_thread(task, ())
|
D | test_threadsignals.py | 70 thread.start_new_thread(send_signals, ())
|
D | lock_tests.py | 7 from thread import start_new_thread, get_ident 44 start_new_thread(task, ()) 165 start_new_thread(f, ())
|
D | test_threading.py | 119 thread.start_new_thread(f, ()) 157 tid = thread.start_new_thread(f, (mutex,))
|
/external/python/cpython2/Demo/metaclasses/ |
D | Synch.py | 129 thread.start_new_thread(f1, (lock,)) # Adds 2 130 thread.start_new_thread(f1, (lock, f1)) # Adds 3 131 thread.start_new_thread(f2, (lock,)) # Adds 1 132 thread.start_new_thread(f2, (lock,)) # Adds 1 246 thread.start_new_thread(consumer, (buffer, cwait, n)) 247 thread.start_new_thread(producer, (buffer, pwait, n))
|
/external/python/cpython3/Lib/test/ |
D | test_thread.py | 45 thread.start_new_thread(self.task, (self.next_ident,)) 120 thread.start_new_thread(task, ()) 145 thread.start_new_thread(task, ()) 187 thread.start_new_thread(self.task2, (i,)) 247 thread.start_new_thread(fork_thread, (self.read_fd, self.write_fd))
|
D | test_threadsignals.py | 74 thread.start_new_thread(send_signals, ()) 133 thread.start_new_thread(other_thread, ()) 169 thread.start_new_thread(other_thread, ()) 218 thread.start_new_thread(send_signals, ())
|
D | lock_tests.py | 8 from _thread import start_new_thread, TIMEOUT_MAX 55 start_new_thread(task, ()) 243 start_new_thread(f, ())
|
D | test_threading.py | 134 tid = _thread.start_new_thread(f, ()) 175 tid = _thread.start_new_thread(f, (mutex,))
|
/external/python/cpython2/Lib/ |
D | dummy_thread.py | 27 def start_new_thread(function, args, kwargs={}): function
|
D | telnetlib.py | 610 thread.start_new_thread(self.listener, ())
|
/external/libxml2/ |
D | regressions.py | 172 th1 = thread.start_new_thread(readPfile, (pout, outfile, th1Flag)) 173 th2 = thread.start_new_thread(readPfile, (perr, errfile, th2Flag))
|
/external/python/cpython2/Demo/threads/ |
D | Coroutine.py | 110 thread.start_new_thread(self._start, (me,) + args)
|
D | Generator.py | 20 thread.start_new_thread(self._start, ())
|
D | sync.py | 501 thread.start_new_thread( func, (id,) + args )
|
/external/python/cpython2/Demo/pysvr/ |
D | pysvr.py | 55 thread.start_new_thread(service_thread, (conn, addr))
|
/external/clang/tools/scan-view/bin/ |
D | scan-view | 138 t = thread.start_new_thread(start_browser, (port, args))
|
/external/autotest/server/cros/ |
D | factory_install_test.py | 230 six.moves._thread.start_new_thread(utils.join_bg_jobs, ([bg_job],))
|
/external/python/cffi/testing/cffi1/ |
D | test_ffi_obj.py | 485 thread.start_new_thread(f, ()) 515 thread.start_new_thread(f, ())
|
/external/sonivox/jet_tools/JetCreator/ |
D | 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, ()) 807 thread.start_new_thread(self.Player .Start, ())
|
/external/python/cpython3/Lib/ |
D | telnetlib.py | 566 _thread.start_new_thread(self.listener, ())
|
/external/python/cpython2/Doc/library/ |
D | thread.rst | 50 .. function:: start_new_thread(function, args[, kwargs])
|
/external/python/cpython3/Doc/library/ |
D | _thread.rst | 44 .. function:: start_new_thread(function, args[, kwargs])
|
12