Lines Matching refs:thread_sp
25 void ThreadCollection::AddThread(const ThreadSP &thread_sp) { in AddThread() argument
27 m_threads.push_back(thread_sp); in AddThread()
30 void ThreadCollection::AddThreadSortedByIndexID(const ThreadSP &thread_sp) { in AddThreadSortedByIndexID() argument
33 const uint32_t thread_index_id = thread_sp->GetIndexID(); in AddThreadSortedByIndexID()
35 m_threads.push_back(thread_sp); in AddThreadSortedByIndexID()
38 std::upper_bound(m_threads.begin(), m_threads.end(), thread_sp, in AddThreadSortedByIndexID()
42 thread_sp); in AddThreadSortedByIndexID()
46 void ThreadCollection::InsertThread(const lldb::ThreadSP &thread_sp, in InsertThread() argument
50 m_threads.insert(m_threads.begin() + idx, thread_sp); in InsertThread()
52 m_threads.push_back(thread_sp); in InsertThread()
62 ThreadSP thread_sp; in GetThreadAtIndex() local
64 thread_sp = m_threads[idx]; in GetThreadAtIndex()
65 return thread_sp; in GetThreadAtIndex()