Lines Matching refs:section
49 SectionLoadList::GetSectionLoadAddress(const lldb::SectionSP §ion) const { in GetSectionLoadAddress()
52 if (section) { in GetSectionLoadAddress()
55 m_sect_to_addr.find(section.get()); in GetSectionLoadAddress()
63 bool SectionLoadList::SetSectionLoadAddress(const lldb::SectionSP §ion, in SetSectionLoadAddress() argument
67 ModuleSP module_sp(section->GetModule()); in SetSectionLoadAddress()
71 section.get(), module_sp->GetFileSpec(), section->GetName(), in SetSectionLoadAddress()
74 if (section->GetByteSize() == 0) in SetSectionLoadAddress()
80 m_sect_to_addr.find(section.get()); in SetSectionLoadAddress()
87 m_sect_to_addr[section.get()] = load_addr; in SetSectionLoadAddress()
102 if (warn_multiple && section != ats_pos->second) { in SetSectionLoadAddress()
103 ModuleSP module_sp(section->GetModule()); in SetSectionLoadAddress()
111 section->GetName().GetCString(), in SetSectionLoadAddress()
117 ats_pos->second = section; in SetSectionLoadAddress()
119 m_addr_to_sect[load_addr] = section; in SetSectionLoadAddress()
128 __FUNCTION__, static_cast<void *>(section.get()), in SetSectionLoadAddress()
129 section->GetName().AsCString(), load_addr); in SetSectionLoadAddress()