/tools/binman/etype/ |
A D | alternates_fdt.py | 100 outfile = tools.get_output_filename( 102 self.fdtgrep.create_for_phase(infile, self._fdt_phase, outfile, 104 return outfile, tools.read_file(outfile)
|
A D | efi_empty_capsule.py | 75 outfile = self._filename if self._filename else 'capsule.%s' % uniq 76 capsule_fname = tools.get_output_filename(outfile)
|
A D | efi_capsule.py | 134 outfile = self._filename if self._filename else 'capsule.%s' % uniq 135 capsule_fname = tools.get_output_filename(outfile)
|
A D | mkimage.py | 187 outfile = self._filename if self._filename else 'mkimage-out.%s' % uniq 188 output_fname = tools.get_output_filename(outfile)
|
A D | fit.py | 647 def _run_fdtgrep(self, infile, phase, outfile): argument 660 return self.fdtgrep.create_for_phase(infile, phase, outfile,
|
/tools/ |
A D | microcode-tool | 174 def CreateFile(date, license_text, mcodes, outfile): argument 231 if outfile == '-': 234 if not outfile: 238 outfile = os.path.join(MICROCODE_DIR, mcode.name + '.dtsi') 240 ', '.join([mcode.name for mcode in mcodes]), outfile), file=sys.stderr) 241 with open(outfile, 'w') as fd: 314 CreateFile(date, license_text, mcode_list, options.outfile)
|
A D | microcode-tool.py | 174 def CreateFile(date, license_text, mcodes, outfile): argument 231 if outfile == '-': 234 if not outfile: 238 outfile = os.path.join(MICROCODE_DIR, mcode.name + '.dtsi') 240 ', '.join([mcode.name for mcode in mcodes]), outfile), file=sys.stderr) 241 with open(outfile, 'w') as fd: 314 CreateFile(date, license_text, mcode_list, options.outfile)
|
A D | dumpimage.c | 81 params.outfile = optarg; in main() 141 if (!params.lflag && !params.outfile) { in main()
|
A D | ifdtool.c | 831 char *outfile = NULL; in main() local 1009 outfile = argv[optind + 1]; in main() 1014 bios_fd = open(filename, outfile ? O_RDONLY : O_RDWR); in main() 1095 if (outfile) { in main() 1096 ret = write_image(outfile, image, size); in main()
|
A D | sfspl.c | 114 fd = open(params->outfile, O_WRONLY | O_CREAT | O_TRUNC, 0644); in sfspl_image_extract_subimage()
|
A D | expo.py | 122 tools.write_file(args.outfile, edtb)
|
A D | imagetool.h | 78 const char *outfile; /* Output filename */ member
|
A D | zynqmpimage.c | 333 return !(params->lflag || params->dflag || params->outfile); in zynqmpimage_check_params() 494 return zynqmpimage_partition_extract(ptr, ph, params->outfile); in zynqmpimage_extract_contents()
|
A D | default_image.c | 195 return imagetool_save_subimage(params->outfile, file_data, file_len); in image_extract_subimage()
|
A D | efivar.py | 316 with open(args.outfile, 'wb') as f:
|
A D | kwbimage.c | 2313 f = fopen(params->outfile, "w"); in kwbimage_generate_config() 2315 fprintf(stderr, "Can't open \"%s\": %s\n", params->outfile, strerror(errno)); in kwbimage_generate_config() 2581 return imagetool_save_subimage(params->outfile, image, size); in kwbimage_extract_subimage()
|
/tools/binman/btool/ |
A D | fdtgrep.py | 66 def create_for_phase(self, infile, phase, outfile, remove_props): argument 106 '-o', outfile,
|
A D | ifwitool.py | 127 def extract(self, ifwi_file, subpart, entry_name, outfile): argument 143 '-f', outfile,
|
/tools/u_boot_pylib/ |
A D | command.py | 67 def run_pipe(pipe_list, infile=None, outfile=None, capture=False, argument 118 elif outfile: 119 kwargs['stdout'] = open(outfile, 'wb')
|
/tools/binman/test/ |
A D | 261_section_fname.dts | 19 filename = "outfile.bin";
|
/tools/dtoc/ |
A D | dtb_platdata.py | 278 def out_header(self, outfile): argument 291 ''' % outfile.hdr_comment) 1214 outfile = output_files.get(cmd) 1215 if not outfile: 1218 plat.setup_output(outfile.ftype, 1219 outfile.fname if output_dirs else output) 1220 plat.out_header(outfile) 1221 outfile.method(plat)
|
/tools/binman/ |
A D | elf.py | 507 def UpdateFile(infile, outfile, start_sym, end_sym, insert): argument 509 (outfile, len(insert), len(insert), start_sym, end_sym)) 525 tools.write_file(outfile, newdata)
|
A D | fip_util.py | 622 parse_atf_source(args.src, args.outfile, oldfile)
|
/tools/buildman/ |
A D | func_test.py | 1032 outfile = os.path.join(self._output_dir, 'test-boards.cfg') 1033 if os.path.exists(outfile): 1034 os.remove(outfile) 1036 result = self._RunControl('-R', outfile, brds=None, 1038 self.assertTrue(os.path.exists(outfile))
|
A D | builderthread.py | 549 outfile = os.path.join(build_dir, 'log') 550 with open(outfile, 'w', encoding='utf-8') as outf:
|