Home
last modified time | relevance | path

Searched refs:run_thread (Results 1 – 11 of 11) sorted by relevance

/external/curl/tests/libtest/
Dlib3026.c33 static DWORD WINAPI run_thread(LPVOID ptr) in run_thread() function
36 static unsigned int WINAPI run_thread(void *ptr) in run_thread()
82 th = CreateThread(NULL, 0, run_thread, &results[i], 0, NULL); in test()
84 th = _beginthreadex(NULL, 0, run_thread, &results[i], 0, NULL); in test()
115 static void *run_thread(void *ptr) in run_thread() function
146 res = pthread_create(&tids[i], NULL, run_thread, &results[i]); in test()
Dlib1565.c46 static void *run_thread(void *ptr) in run_thread() function
114 result = pthread_create(&tid, NULL, run_thread, NULL); in test()
/external/sdv/vsomeip/third_party/boost/thread/test/
Dtest_5542_2.cpp10 void run_thread() { in run_thread() function
15 boost::thread t(&run_thread); in main()
/external/tensorflow/tensorflow/python/distribute/coordinator/
Dfault_tolerance_test.py344 run_thread = threading.Thread(target=run_fn)
345 run_thread.start()
350 self.thread_coord.join([run_thread])
378 run_thread = threading.Thread(target=run_fn)
379 run_thread.start()
384 self.thread_coord.join([run_thread])
417 run_thread = threading.Thread(target=run_fn)
418 run_thread.start()
425 self.thread_coord.join([run_thread])
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/impl/
Dwinrt_timer_scheduler.ipp78 void winrt_timer_scheduler::run_thread()
100 scheduler->run_thread();
Dselect_reactor.ipp48 this_->run_thread();
277 void select_reactor::run_thread()
/external/tensorflow/tensorflow/python/keras/utils/
Ddata_utils.py599 self.run_thread = None
621 self.run_thread = threading.Thread(target=self._run)
622 self.run_thread.daemon = True
623 self.run_thread.start()
643 self.run_thread.join(timeout)
/external/sdv/vsomeip/third_party/boost/asio/include/boost/asio/detail/
Dwinrt_timer_scheduler.hpp98 BOOST_ASIO_DECL void run_thread();
Dselect_reactor.hpp167 BOOST_ASIO_DECL void run_thread();
/external/python/cpython3/Lib/test/
Dtest_threading.py1922 def run_thread(): function
1932 default_output = run_thread()
1934 custom_hook_output = run_thread()
1936 recovered_output = run_thread()
Dtest_gc.py483 def run_thread(): function
494 t = threading.Thread(target=run_thread)