/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&); 150 new_thread() in new_thread() function 156 explicit new_thread(thread_factory tf) in new_thread() function 160 virtual ~new_thread() in ~new_thread() argument 174 static scheduler instance = make_scheduler<new_thread>(); in make_new_thread() 178 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-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 | 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 | 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/tensorflow/tensorflow/core/platform/default/ |
D | unbounded_work_queue.cc | 67 Thread* new_thread = in Schedule() local 71 thread_pool_.emplace_back(new_thread); in Schedule()
|
/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/autotest/client/bin/ |
D | fps_meter.py | 196 new_thread = threading.Thread(target=function, args=args) 197 new_thread.start()
|
/external/llvm-project/openmp/runtime/src/ |
D | ompt-specific.cpp | 478 uint64_t new_thread = KMP_TEST_THEN_INC64((kmp_int64 *)&thread); in __ompt_get_unique_id_internal() local 479 ID = new_thread << (sizeof(uint64_t) * 8 - OMPT_THREAD_ID_BITS); in __ompt_get_unique_id_internal()
|
/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/ |
D | ProcessWindows.cpp | 751 void ProcessWindows::OnCreateThread(const HostThread &new_thread) { in OnCreateThread() argument 754 ThreadSP thread = std::make_shared<TargetThreadWindows>(*this, new_thread); in OnCreateThread() 756 const HostNativeThread &native_new_thread = new_thread.GetNativeThread(); in OnCreateThread()
|
D | NativeProcessWindows.cpp | 539 void NativeProcessWindows::OnCreateThread(const HostThread &new_thread) { in OnCreateThread() argument 542 auto thread = std::make_unique<NativeThreadWindows>(*this, new_thread); in OnCreateThread()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectThread.cpp | 1172 Thread *new_thread = in DoExecute() local 1174 if (new_thread == nullptr) { in DoExecute() 1181 process->GetThreadList().SetSelectedThreadByID(new_thread->GetID(), true); in DoExecute()
|
/external/llvm-project/lldb/source/Plugins/Process/Linux/ |
D | NativeProcessLinux.cpp | 555 NativeThreadLinux &new_thread = AddThread(tid); in WaitForNewThread() local 557 ResumeThread(new_thread, eStateRunning, LLDB_INVALID_SIGNAL_NUMBER); in WaitForNewThread() 558 ThreadWasCreated(new_thread); in WaitForNewThread()
|