Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DSection.cpp403 m_sections = rhs.m_sections; in operator =()
410 m_sections.push_back(section_sp); in AddSection()
419 if (idx < m_sections.size()) { in DeleteSection()
420 m_sections.erase(m_sections.begin() + idx); in DeleteSection()
428 iterator begin = m_sections.begin(); in FindSectionIndex()
429 iterator end = m_sections.end(); in FindSectionIndex()
466 size_t count = m_sections.size(); in GetNumSections()
478 if (idx < m_sections.size()) in GetSectionAtIndex()
479 sect_sp = m_sections[idx]; in GetSectionAtIndex()
531 sect_sp = m_sections[idx]; in FindSectionByType()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DSection.h40 const_iterator begin() const { return m_sections.begin(); } in begin()
41 const_iterator end() const { return m_sections.end(); } in end()
42 const_iterator begin() { return m_sections.begin(); } in begin()
43 const_iterator end() { return m_sections.end(); } in end()
74 size_t GetSize() const { return m_sections.size(); } in GetSize()
90 void Clear() { m_sections.clear(); } in Clear()
93 collection m_sections;
/freebsd-13.1/contrib/bsnmp/tests/
H A Dcatch.hpp5884 std::vector<std::vector<std::shared_ptr<SectionNode>>> m_sections; member