Home
last modified time | relevance | path

Searched refs:elffile (Results 1 – 5 of 5) sorted by relevance

/optee_os/scripts/
H A Dgen_tee_bin.py16 from elftools.elf.elffile import ELFFile
55 def get_arch_id(elffile): argument
56 e_machine = elffile.header['e_machine']
75 def get_symbol(elffile, name): argument
81 symbol_tables = [s for s in elffile.iter_sections()
106 def get_sections(elffile, pad_to, dump_names): argument
110 for section in elffile.iter_sections():
133 def get_pageable_bin(elffile): argument
138 tee_pageable_bin = get_sections(elffile, pad_to, dump_names)
142 def get_pager_bin(elffile): argument
[all …]
H A Dgen_ldelf_hex.py13 from elftools.elf.elffile import ELFFile
38 def emit_load_segments(elffile, outf): argument
42 load_segments = [s for s in elffile.iter_segments()
141 elffile = ELFFile(inf)
146 emit_load_segments(elffile, outf)
148 elffile.header['e_entry'])
H A Dts_bin_to_c.py10 from elftools.elf.elffile import ELFFile, ELFError
67 elffile = ELFFile(f)
69 for s in elffile.iter_sections():
74 s2 = elffile.get_section(symbol.entry['st_shndx'])
84 for s in elffile.iter_sections():
94 elffile = ELFFile(f)
99 for s in elffile.iter_sections():
H A Dprint_tee_hash.py9 from elftools.elf.elffile import ELFFile
H A Dsign_rproc_fw.py8 from elftools.elf.elffile import ELFFile