Home
last modified time | relevance | path

Searched refs:other_thread (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/lang/objc/print-obj/
H A DTestPrintObj.py60 other_thread = None
63 other_thread = t
68 self.assertTrue(other_thread)
69 process.SetSelectedThread(other_thread)
71 print("selected thread:" + lldbutil.get_description(other_thread))
77 depth = other_thread.GetNumFrames()
79 frame = other_thread.GetFrameAtIndex(i)
82 other_thread.SetSelectedFrame(i)
/llvm-project-15.0.7/lldb/test/API/functionalities/thread/state_after_expression/
H A DTestStateAfterExpression.py34 other_thread = threads[0]
36 self.assertNotEqual(thread.GetThreadID(), other_thread.GetThreadID(),
46 stop_reason = other_thread.GetStopReason()
51 self.assertEqual(other_thread.GetStopReasonDataAtIndex(0), 1,
/llvm-project-15.0.7/lldb/test/API/macosx/thread-names/
H A Dmain.c28 pthread_t other_thread; in main() local
29 pthread_create (&other_thread, NULL, second_thread, NULL); in main()
30 pthread_create (&other_thread, NULL, third_thread, NULL); in main()
/llvm-project-15.0.7/lldb/test/API/macosx/safe-to-func-call/
H A Dmain.c27 pthread_t other_thread; in main() local
28 pthread_create (&other_thread, NULL, select_thread, NULL); in main()
/llvm-project-15.0.7/compiler-rt/test/xray/TestCases/Posix/
H A Dfdr-mode.cpp62 std::thread other_thread([]() { in main() local
68 other_thread.join(); in main()
/llvm-project-15.0.7/lldb/test/API/functionalities/tsan/thread_numbers/
H A DTestTsanThreadNumbers.py69 other_thread = self.dbg.GetSelectedTarget(
71 self.assertTrue(other_thread.IsValid())
/llvm-project-15.0.7/lldb/source/Target/
H A DProcess.cpp827 ThreadSP other_thread; in HandleProcessStateChangedEvent() local
845 if (!other_thread) in HandleProcessStateChangedEvent()
846 other_thread = thread; in HandleProcessStateChangedEvent()
861 if (!other_thread) in HandleProcessStateChangedEvent()
862 other_thread = thread; in HandleProcessStateChangedEvent()
872 else if (other_thread) in HandleProcessStateChangedEvent()
873 thread_list.SetSelectedThreadByID(other_thread->GetID()); in HandleProcessStateChangedEvent()
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_tasking.cpp3162 kmp_info_t *other_thread; in __kmp_execute_tasks_template() local
3207 other_thread = threads_data[victim_tid].td.td_thr; in __kmp_execute_tasks_template()
3222 other_thread = threads_data[victim_tid].td.td_thr; in __kmp_execute_tasks_template()
3234 (TCR_PTR(CCAST(void *, other_thread->th.th_sleep_loc)) != in __kmp_execute_tasks_template()
3237 __kmp_null_resume_wrapper(other_thread); in __kmp_execute_tasks_template()
3250 task = __kmp_steal_task(other_thread, gtid, task_team, in __kmp_execute_tasks_template()