Lines Matching refs:section
140 for section in elf.iter_sections():
141 if isinstance(section, SymbolTableSection):
142 for sym in section.iter_symbols():
185 def print_section_info(section, descr=""): argument
187 sec_size = section['sh_size']
188 sec_start = section['sh_addr']
210 xip = any(section.get_symbol_by_name('CONFIG_XIP')
211 for section in elf.iter_sections('SHT_SYMTAB'))
215 for section in elf.iter_sections():
216 size = section['sh_size']
217 sec_start = section['sh_addr']
219 bound = {'start': sec_start, 'end': sec_end, 'name': section.name}
222 if section['sh_type'] == 'SHT_NOBITS':
227 print_section_info(section, "RAM bss section")
229 elif section['sh_type'] == 'SHT_PROGBITS':
231 flags = section['sh_flags']
237 print_section_info(section, "ROM txt section")
249 print_section_info(section, "DATA r/w section")
256 print_section_info(section, "ROM r/o section")
259 print_section_info(section, "unassigned section")
583 …def __init__(self, name, identifier, size=0, parent=None, children=None, address=None, section=Non… argument
591 if section is not None:
592 self.section = section
638 def _insert_one_elem(root, path, size, addr, section): argument
668 node.section = section
689 section = symbol['section']
707 _insert_one_elem(dest_node, path, size, addr, section)
767 section_name = row.node.section