Home
last modified time | relevance | path

Searched refs:start_new_thread (Results 1 – 25 of 39) sorted by relevance

12

/external/python/cpython2/Lib/test/
Dtest_dummy_thread.py74 _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,
Dtest_thread.py47 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, ())
Dtest_threaded_import.py67 thread.start_new_thread(task, ())
Dtest_threadsignals.py70 thread.start_new_thread(send_signals, ())
Dlock_tests.py7 from thread import start_new_thread, get_ident
44 start_new_thread(task, ())
165 start_new_thread(f, ())
Dtest_threading.py119 thread.start_new_thread(f, ())
157 tid = thread.start_new_thread(f, (mutex,))
/external/python/cpython2/Demo/metaclasses/
DSynch.py129 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/
Dtest_thread.py45 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))
Dtest_threadsignals.py74 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, ())
Dlock_tests.py8 from _thread import start_new_thread, TIMEOUT_MAX
55 start_new_thread(task, ())
243 start_new_thread(f, ())
Dtest_threading.py134 tid = _thread.start_new_thread(f, ())
175 tid = _thread.start_new_thread(f, (mutex,))
/external/python/cpython2/Lib/
Ddummy_thread.py27 def start_new_thread(function, args, kwargs={}): function
Dtelnetlib.py610 thread.start_new_thread(self.listener, ())
/external/libxml2/
Dregressions.py172 th1 = thread.start_new_thread(readPfile, (pout, outfile, th1Flag))
173 th2 = thread.start_new_thread(readPfile, (perr, errfile, th2Flag))
/external/python/cpython2/Demo/threads/
DCoroutine.py110 thread.start_new_thread(self._start, (me,) + args)
DGenerator.py20 thread.start_new_thread(self._start, ())
Dsync.py501 thread.start_new_thread( func, (id,) + args )
/external/python/cpython2/Demo/pysvr/
Dpysvr.py55 thread.start_new_thread(service_thread, (conn, addr))
/external/clang/tools/scan-view/bin/
Dscan-view138 t = thread.start_new_thread(start_browser, (port, args))
/external/autotest/server/cros/
Dfactory_install_test.py230 six.moves._thread.start_new_thread(utils.join_bg_jobs, ([bg_job],))
/external/python/cffi/testing/cffi1/
Dtest_ffi_obj.py485 thread.start_new_thread(f, ())
515 thread.start_new_thread(f, ())
/external/sonivox/jet_tools/JetCreator/
DJetDialogs.py328 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/
Dtelnetlib.py566 _thread.start_new_thread(self.listener, ())
/external/python/cpython2/Doc/library/
Dthread.rst50 .. function:: start_new_thread(function, args[, kwargs])
/external/python/cpython3/Doc/library/
D_thread.rst44 .. function:: start_new_thread(function, args[, kwargs])

12