Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Symbol/
DUnwindTable.cpp32 : m_module(module), m_unwinds(), m_initialized(false), m_mutex(), in UnwindTable()
123 iterator end = m_unwinds.end(); in GetFuncUnwindersContainingAddress()
125 if (!m_unwinds.empty()) { in GetFuncUnwindersContainingAddress()
126 insert_pos = m_unwinds.lower_bound(file_addr); in GetFuncUnwindersContainingAddress()
128 if ((pos == m_unwinds.end()) || in GetFuncUnwindersContainingAddress()
129 (pos != m_unwinds.begin() && in GetFuncUnwindersContainingAddress()
142 m_unwinds.insert(insert_pos, in GetFuncUnwindersContainingAddress()
167 const_iterator begin = m_unwinds.begin(); in Dump()
168 const_iterator end = m_unwinds.end(); in Dump()
/external/llvm-project/lldb/include/lldb/Symbol/
DUnwindTable.h71 collection m_unwinds; variable