Home
last modified time | relevance | path

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

/external/lldb/test/lang/objc/print-obj/
DTestPrintObj.py70 other_thread = None
73 other_thread = t
77 self.assertTrue(other_thread)
78 process.SetSelectedThread(other_thread)
80 print "selected thread:" + lldbutil.get_description(other_thread)
86 depth = other_thread.GetNumFrames()
88 frame = other_thread.GetFrameAtIndex(i)
91 other_thread.SetSelectedFrame(i)
/external/valgrind/drd/tests/
Dbug-235681.c51 pthread_t other_thread; in main() local
63 rc = pthread_create(&other_thread, NULL, run_fn, NULL); in main()
88 rc = pthread_join(other_thread, NULL); in main()
/external/lldb/tools/driver/
DDriver.cpp824 SBThread other_thread; in UpdateSelectedThread() local
844 if (!other_thread.IsValid()) in UpdateSelectedThread()
845 other_thread = thread; in UpdateSelectedThread()
855 else if (other_thread.IsValid()) in UpdateSelectedThread()
856 process.SetSelectedThread (other_thread); in UpdateSelectedThread()