Searched refs:m_sections_up (Results 1 – 12 of 12) sorted by relevance
38 m_sections_up = std::make_unique<lldb_private::SectionList>(); in CreateSections()45 m_sections_up->AddSection(section_sp); in CreateSections()50 return lldb_private::Address(m_sections_up->GetSectionAtIndex(0), 0); in GetBaseAddress()60 assert(m_sections_up->GetNumSections(0) == 1); in SetLoadAddress()62 target.SetSectionLoadAddress(m_sections_up->GetSectionAtIndex(0), m_base); in SetLoadAddress()
107 if (!m_sections_up) { in CreateSections()108 m_sections_up = std::make_unique<SectionList>(); in CreateSections()111 delegate_sp->PopulateSectionList(this, *m_sections_up); in CreateSections()112 unified_section_list = *m_sections_up; in CreateSections()
127 if (m_sections_up) in CreateSections()129 m_sections_up = std::make_unique<SectionList>(); in CreateSections()145 m_sections_up->AddSection(section_sp); in CreateSections()
182 if (m_sections_up) in CreateSections()185 m_sections_up = std::make_unique<SectionList>(); in CreateSections()246 m_sections_up->AddSection(section); in CreateSections()
178 if (m_sections_up) in CreateSections()180 m_sections_up = std::make_unique<SectionList>(); in CreateSections()231 m_sections_up->AddSection(section_sp); in CreateSections()
297 if (m_sections_up) in CreateSections()300 m_sections_up = std::make_unique<SectionList>(); in CreateSections()358 m_sections_up->AddSection(section_sp); in CreateSectionsWithBitness()
261 if (m_sections_up) in CreateSections()264 m_sections_up = std::make_unique<SectionList>(); in CreateSections()311 m_sections_up->AddSection(section_sp); in CreateSections()
258 m_memory_addr(LLDB_INVALID_ADDRESS), m_sections_up(), m_symtab_up(), in ObjectFile()279 m_process_wp(process_sp), m_memory_addr(header_addr), m_sections_up(), in ObjectFile()603 if (m_sections_up == nullptr) { in GetSectionList()615 return m_sections_up.get(); in GetSectionList()
292 m_sections_up.reset(); in ~Module()1218 if (!m_sections_up) { in GetSectionList()1223 return m_sections_up.get(); in GetSectionList()1241 if (!m_sections_up) in GetUnifiedSectionList()1242 m_sections_up = std::make_unique<SectionList>(); in GetUnifiedSectionList()1243 return m_sections_up.get(); in GetUnifiedSectionList()
788 std::unique_ptr<lldb_private::SectionList> m_sections_up; variable
1873 if (m_sections_up) in CreateSections()1876 m_sections_up = std::make_unique<SectionList>(); in CreateSections()1899 m_sections_up->AddSection(Segment); in CreateSections()1947 (InfoOr->Segment ? InfoOr->Segment->GetChildren() : *m_sections_up) in CreateSections()1955 unified_section_list = *m_sections_up; in CreateSections()2405 SectionList *section_list = m_sections_up.get(); in ParseSymbolTable()2629 SectionList *section_list = m_sections_up.get(); in ParseTrampolineSymbols()
1052 lldb::SectionListUP m_sections_up; ///< Unified section list for module that variable