Lines Matching refs:section
83 for section in symbol_tables:
84 for symbol in section.iter_symbols():
110 for section in elffile.iter_sections():
111 section_name = get_name(section)
112 if (section['sh_type'] == 'SHT_NOBITS' or
113 not (section['sh_flags'] & SH_FLAGS.SHF_ALLOC) or
118 bin_data = section.data()
120 if section['sh_addr'] > last_end:
121 bin_data += bytearray(section['sh_addr'] - last_end)
122 bin_data += section.data()
124 last_end = section['sh_addr'] + section['sh_size']
162 for section in elffile.iter_sections():
163 if not isinstance(section, RelocationSection):
165 for rel in section.iter_relocations():