Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DUnwindTable.cpp33 : m_module(module), m_unwinds(), m_initialized(false), m_mutex(), in UnwindTable()
169 iterator end = m_unwinds.end(); in GetFuncUnwindersContainingAddress()
171 if (!m_unwinds.empty()) { in GetFuncUnwindersContainingAddress()
172 insert_pos = m_unwinds.lower_bound(file_addr); in GetFuncUnwindersContainingAddress()
174 if ((pos == m_unwinds.end()) || in GetFuncUnwindersContainingAddress()
175 (pos != m_unwinds.begin() && in GetFuncUnwindersContainingAddress()
188 m_unwinds.insert(insert_pos, in GetFuncUnwindersContainingAddress()
212 const_iterator begin = m_unwinds.begin(); in Dump()
213 const_iterator end = m_unwinds.end(); in Dump()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DUnwindTable.h76 collection m_unwinds; variable