Lines Matching refs:sect
106 for sect in elf.iter_sections():
111 if (((wildcards is not None) and (sect.name in wildcards)) or
112 ((sect['sh_flags'] & SH_FLAGS.SHF_ALLOC) == SH_FLAGS.SHF_ALLOC
113 and sect['sh_type'] == 'SHT_PROGBITS')
115 sections[sect.name] = {
116 'name' : sect.name,
117 'size' : sect['sh_size'],
118 'start' : sect['sh_addr'],
119 'end' : sect['sh_addr'] + sect['sh_size'] - 1,
120 'data' : sect.data(),
469 for _, sect in elf_sections.items():
470 one_str = extract_one_string_in_section(sect, str_var['addr'])