Home
last modified time | relevance | path

Searched refs:m_row_list (Results 1 – 2 of 2) sorted by relevance

/external/lldb/source/Symbol/
DUnwindPlan.cpp309 if (m_row_list.empty() || m_row_list.back()->GetOffset() != row_sp->GetOffset()) in AppendRow()
310 m_row_list.push_back(row_sp); in AppendRow()
312 m_row_list.back() = row_sp; in AppendRow()
319 if (!m_row_list.empty()) in GetRowForFunctionOffset()
322 row = m_row_list.back(); in GetRowForFunctionOffset()
325 collection::const_iterator pos, end = m_row_list.end(); in GetRowForFunctionOffset()
326 for (pos = m_row_list.begin(); pos != end; ++pos) in GetRowForFunctionOffset()
341 return idx < m_row_list.size(); in IsValidRowIndex()
348 assert (idx < m_row_list.size()); in GetRowAtIndex()
349 return m_row_list[idx]; in GetRowAtIndex()
[all …]
/external/lldb/include/lldb/Symbol/
DUnwindPlan.h348 m_row_list (), in UnwindPlan()
402 if (m_row_list.empty()) in GetInitialCFARegister()
404 return m_row_list.front()->GetCFARegister(); in GetInitialCFARegister()
473 m_row_list.clear(); in Clear()
486 collection m_row_list; variable