reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
89 if (idx < m_threads.size()) 90 return m_threads[idx].get(); 96 for (const auto &thread : m_threads) { 161 for (const auto &thread : m_threads) { 202 for (const auto &thread : m_threads) { 248 for (const auto &thread : m_threads) { 287 for (const auto &thread : m_threads) {tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
602 llvm::erase_if(m_threads, [&](std::unique_ptr<NativeThreadProtocol> &t) { 605 assert(m_threads.size() == 1); 606 auto *main_thread = static_cast<NativeThreadLinux *>(m_threads[0].get()); 1039 for (const auto &thread : m_threads) { 1056 for (const auto &thread : m_threads) { 1115 for (const auto &thread : m_threads) { 1150 for (const auto &thread : m_threads) { 1393 return m_threads.size(); 1552 for (const auto &thread : m_threads) { 1569 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { 1569 for (auto it = m_threads.begin(); it != m_threads.end(); ++it) { 1571 m_threads.erase(it); 1591 if (m_threads.empty()) 1594 m_threads.push_back(std::make_unique<NativeThreadLinux>(*this, thread_id)); 1610 return static_cast<NativeThreadLinux &>(*m_threads.back()); 1705 for (const auto &thread : m_threads) { 1718 for (const auto &thread_sp : m_threads) { 1915 for (const auto &thread_sp : m_threads) {