Searched refs:outf (Results 1 – 4 of 4) sorted by relevance
/optee_os-3.20.0/scripts/ |
A D | gen_stmm_hex.py | 29 outf = args.output 36 outf.write('/* Automatically generated, do no edit */\n') 37 outf.write('const unsigned char stmm_image[] = {\n') 41 outf.write('\t') 42 outf.write('0x{:02x},'.format(bytes[i])) 45 outf.write('\n') 47 outf.write(' ') 48 outf.write('};\n') 50 outf.write('const unsigned int stmm_image_size = sizeof(stmm_image);\n') 51 outf.write('const unsigned int stmm_image_uncompressed_size = ' [all …]
|
A D | gen_ldelf_hex.py | 38 def emit_load_segments(elffile, outf): argument 96 outf.write(b' __aligned(4096) = {\n') 104 outf.write(b'\t') 109 outf.write(b'\n') 111 outf.write(b' ') 113 outf.write(b'};\n') 136 outf = args.output 141 outf.write(b'#include <compiler.h>\n') 142 outf.write(b'#include <stdint.h>\n') 143 emit_load_segments(elffile, outf) [all …]
|
A D | gen_tee_bin.py | 248 def output_pager_bin(elffile, outf): argument 263 def output_raw_bin(elffile, outf): argument 269 outf.write(pager_bin) 271 outf.write(embdata_bin) 275 def output_header_v1(elffile, outf): argument 299 outf.write(pager_bin) 301 outf.write(embdata_bin) 305 def output_header_v2(elffile, outf): argument 329 def output_pager_v2(elffile, outf): argument 335 outf.write(pager_bin) [all …]
|
A D | sign_encrypt.py | 806 def write(self, outf): argument 807 with open(outf, 'wb') as f: 843 ta_image.write(args.outf) 854 image.write(args.outf) 870 ta_image.write(args.outf)
|
Completed in 6 milliseconds