Home
last modified time | relevance | path

Searched refs:new_thread (Results 1 – 22 of 22) 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&);
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/
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-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()
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()
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/tensorflow/tensorflow/core/platform/default/
Dunbounded_work_queue.cc67 Thread* new_thread = in Schedule() local
71 thread_pool_.emplace_back(new_thread); in Schedule()
/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/autotest/client/bin/
Dfps_meter.py196 new_thread = threading.Thread(target=function, args=args)
197 new_thread.start()
/external/llvm-project/openmp/runtime/src/
Dompt-specific.cpp478 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/
DProcessWindows.cpp751 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()
DNativeProcessWindows.cpp539 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/
DCommandObjectThread.cpp1172 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/
DNativeProcessLinux.cpp555 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()