Home
last modified time | relevance | path

Searched refs:new_thread (Results 1 – 17 of 17) sorted by relevance

/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/
Drx-newthread.hpp16 struct new_thread : public scheduler_interface struct
19 typedef new_thread this_type; argument
20 new_thread(const this_type&);
146 new_thread() in new_thread() function
152 explicit new_thread(thread_factory tf) in new_thread() argument
156 virtual ~new_thread() in ~new_thread() argument
170 static scheduler instance = make_scheduler<new_thread>(); in make_new_thread()
174 return make_scheduler<new_thread>(tf); in make_new_thread()
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_sigmask/
D14-1.c49 pthread_t new_thread; in main() local
51 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
56 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D16-1.c66 pthread_t new_thread; in main() local
68 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
73 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D10-1.c58 pthread_t new_thread; in main() local
60 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
65 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D9-1.c97 pthread_t new_thread; in main() local
99 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
104 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D4-1.c110 pthread_t new_thread; in main() local
112 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
117 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D5-1.c120 pthread_t new_thread; in main() local
122 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
127 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D8-1.c84 pthread_t new_thread; in main() local
86 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
91 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D7-1.c83 pthread_t new_thread; in main() local
85 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
90 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D8-3.c84 pthread_t new_thread; in main() local
86 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
91 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D8-2.c85 pthread_t new_thread; in main() local
87 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
92 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D6-1.c131 pthread_t new_thread; in main() local
133 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
138 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
D12-1.c121 pthread_t new_thread; in main() local
123 if (pthread_create(&new_thread, NULL, a_thread_func, NULL) != 0) { in main()
128 if (pthread_join(new_thread, (void *)&thread_return_value) != 0) { in main()
/external/ltp/testcases/kernel/sched/clisrv/
Dpthserv.c90 void *new_thread(void *); in main()
153 if (pthread_create(&th, &newattr, new_thread, in main()
167 void *new_thread(void *arg_) in new_thread() function
/external/autotest/client/site_tests/power_Thermal/
Dpower_Thermal.py107 new_thread = threading.Thread(target=self._cpu_heater)
108 self.worker_threads.append(new_thread)
109 new_thread.daemon = True
110 new_thread.start()
/external/tensorflow/tensorflow/core/kernels/data/
Dunbounded_thread_pool.cc118 Thread* new_thread = env_->StartThread( in RunOnPooledThread() local
123 thread_pool_.emplace_back(new_thread); in RunOnPooledThread()
/external/autotest/client/bin/
Dfps_meter.py192 new_thread = threading.Thread(target=function, args=args)
193 new_thread.start()