Home
last modified time | relevance | path

Searched refs:m_sections (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DSection.cpp429 m_sections = rhs.m_sections; in operator =()
436 m_sections.push_back(section_sp); in AddSection()
445 if (idx < m_sections.size()) { in DeleteSection()
446 m_sections.erase(m_sections.begin() + idx); in DeleteSection()
454 iterator begin = m_sections.begin(); in FindSectionIndex()
455 iterator end = m_sections.end(); in FindSectionIndex()
492 size_t count = m_sections.size(); in GetNumSections()
504 if (idx < m_sections.size()) in GetSectionAtIndex()
505 sect_sp = m_sections[idx]; in GetSectionAtIndex()
557 sect_sp = m_sections[idx]; in FindSectionByType()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARFDwp.cpp116 auto it = m_sections.find(sect_type); in LoadRawSectionData()
117 if (it != m_sections.end()) { in LoadRawSectionData()
132 m_sections[sect_type] = data; in LoadRawSectionData()
137 m_sections[sect_type].Clear(); in LoadRawSectionData()
H A DSymbolFileDWARFDwp.h45 std::map<lldb::SectionType, lldb_private::DWARFDataExtractor> m_sections; variable
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/
H A DSection.h84 size_t GetSize() const { return m_sections.size(); } in GetSize()
100 void Clear() { m_sections.clear(); } in Clear()
103 collection m_sections;