/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/schedulers/ |
D | rx-newthread.hpp | 16 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/ |
D | 14-1.c | 49 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()
|
D | 16-1.c | 66 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()
|
D | 10-1.c | 58 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()
|
D | 9-1.c | 97 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()
|
D | 4-1.c | 110 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()
|
D | 5-1.c | 120 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()
|
D | 8-1.c | 84 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()
|
D | 7-1.c | 83 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()
|
D | 8-3.c | 84 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()
|
D | 8-2.c | 85 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()
|
D | 6-1.c | 131 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()
|
D | 12-1.c | 121 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/ |
D | pthserv.c | 90 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/ |
D | power_Thermal.py | 107 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/ |
D | unbounded_thread_pool.cc | 118 Thread* new_thread = env_->StartThread( in RunOnPooledThread() local 123 thread_pool_.emplace_back(new_thread); in RunOnPooledThread()
|
/external/autotest/client/bin/ |
D | fps_meter.py | 192 new_thread = threading.Thread(target=function, args=args) 193 new_thread.start()
|