D | bin_image.py | 1314 def read_section_header(offs): argument 1325 ) = struct.unpack_from("<LLLLLLLLL", section_header[offs:]) 1328 all_sections = [read_section_header(offs) for offs in section_header_offsets] 1348 def lookup_string(offs): argument 1349 raw = string_table[offs:] 1352 def read_data(offs, size): argument 1353 f.seek(offs) 1360 read_data(offs, size), 1364 for (n_offs, _type, lma, size, offs, _flags, align) in prog_sections 1370 for (n_offs, _type, lma, size, offs, _flags, align) in nobits_secitons [all …]
|