Lines Matching defs:section
200 // This section has a parent which means m_file_addr is an offset into the
201 // parent section, so the file address for this section is the file address
205 // This section has no parent, so m_file_addr is the file base address
216 // This section has no parent, so m_file_addr is the file base address
223 // This section has a parent which means m_file_addr is an offset.
228 // This section has no parent, so there is no offset to be had
321 // The top most section prints the module basename
337 bool Section::IsDescendant(const Section *section) {
338 if (this == section)
342 return parent_sp->IsDescendant(section);
506 // The secton was already in this section list
560 // Check if we have a valid section string
626 // The file address is in this section. We need to make sure one of our
676 for (const auto §ion : m_sections) {
677 const SectionList &sub_sections = section->GetChildren();
680 else if (section->ContainsOnlyDebugInfo())
681 debug_info_size += section->GetFileSize();
690 lldb_private::JSONSection §ion, llvm::json::Path path) {
692 return o && o.map("name", section.name) && o.map("type", section.type) &&
693 o.map("size", section.address) && o.map("size", section.size);
707 path.report("invalid section type");