Searched refs:out_file (Results 1 – 6 of 6) sorted by relevance
/scripts/ |
A D | make_bugs_pickle.py | 49 if args.out_file is None: 52 return open(args.out_file, 'wb') 58 with open_out_file(args) as out_file: 59 pickle.dump(open_bugs, out_file)
|
A D | snippets.py | 99 def __init__(self, snippets: Snippets, out_file): argument 101 self.out_file = out_file 181 kwargs['file'] = self.out_file
|
/scripts/build/ |
A D | subfolder_list.py | 72 def gen_out_file(out_file, dirs): argument 80 if os.path.exists(out_file): 81 with open(out_file, 'r', encoding="utf-8") as out_file_fo: 87 with open(out_file, 'w', encoding="utf-8") as out_file_fo: 112 gen_out_file(args.out_file, dirs)
|
A D | gen_image_info.py | 52 with open(filename, 'w') as out_file: 53 out_file.write('\n'.join(content))
|
/scripts/dts/ |
A D | gen_edt.py | 94 def write_pickled_edt(edt: edtlib.EDT, out_file: str) -> None: 97 with open(out_file, 'wb') as f:
|
/scripts/west_commands/ |
A D | sign.py | 689 out_file = command.args.sbin or f'{kernel_prefix}.signed.rps' 690 return (in_file, out_file) 694 in_file, out_file = self.get_input_output(command, build_dir, build_conf) 697 commandline = [ tool, "rps", "convert", out_file, "--app", in_file ]
|
Completed in 7 milliseconds