Home
last modified time | relevance | path

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

/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.py43 thread.start_new_thread(self.task, (self.next_ident,))
113 thread.start_new_thread(task, ())
146 thread.start_new_thread(task, ())
184 thread.start_new_thread(self.task2, (i,))
245 thread.start_new_thread(thread1, ())
Dtest_threaded_import.py67 thread.start_new_thread(task, ())
Dtest_threadsignals.py68 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,))
Dtest_socket.py134 self.client_thread = thread.start_new_thread(
/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/cpython2/Lib/
Ddummy_thread.py27 def start_new_thread(function, args, kwargs={}): function
Dtelnetlib.py610 thread.start_new_thread(self.listener, ())
Dthreading.py35 _start_new_thread = thread.start_new_thread
/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/autotest/client/site_tests/autoupdate_CannedOmahaUpdate/
Dautoupdate_CannedOmahaUpdate.py85 thread.start_new_thread(self._httpd.serve_forever, ())
/external/clang/tools/scan-view/bin/
Dscan-view138 t = thread.start_new_thread(start_browser, (port, args))
/external/python/cpython2/Demo/pysvr/
Dpysvr.py55 thread.start_new_thread(service_thread, (conn, addr))
/external/autotest/server/cros/
Dfactory_install_test.py229 thread.start_new_thread(utils.join_bg_jobs, ([bg_job],))
/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, ())
DJetAudition.py168 thread.start_new_thread(self.PlaySegs, ())
DJetCreator.py1219 thread.start_new_thread(self.PlaySegs, ())
/external/python/cpython2/Doc/library/
Dthread.rst50 .. function:: start_new_thread(function, args[, kwargs])
/external/python/cpython2/Misc/
DNEWS3292 - Issue #14474: Save and restore exception state in thread.start_new_thread()
7821 ``thread.start_new_thread()``.
DHISTORY6493 - thread.start_new_thread() now returns the thread ID (previously None).