Home
last modified time | relevance | path

Searched refs:out_file (Results 1 – 11 of 11) sorted by relevance

/Zephyr-Core-3.6.0/doc/_extensions/zephyr/
Dhtml_redirects.py72 out_file = app.builder.get_outfilename(old_url)
74 out_dir = os.path.dirname(out_file)
80 if not os.path.exists(out_file):
81 with open(out_file, "w") as rp:
/Zephyr-Core-3.6.0/scripts/
Dmake_bugs_pickle.py49 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)
Dsnippets.py95 def __init__(self, snippets: Snippets, out_file): argument
97 self.out_file = out_file
177 kwargs['file'] = self.out_file
/Zephyr-Core-3.6.0/scripts/build/
Dsubfolder_list.py72 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)
Dgen_image_info.py52 with open(filename, 'w') as out_file:
53 out_file.write('\n'.join(content))
/Zephyr-Core-3.6.0/boards/arm64/fvp_baser_aemv8r/
Dboard.cmake20 -C bp.pl011_uart0.out_file=-
24 -C bp.pl011_uart1.out_file=-
28 -C bp.pl011_uart2.out_file=-
32 -C bp.pl011_uart3.out_file=-
/Zephyr-Core-3.6.0/boards/arm/fvp_baser_aemv8r_aarch32/
Dboard.cmake20 -C bp.pl011_uart0.out_file=-
24 -C bp.pl011_uart1.out_file=-
28 -C bp.pl011_uart2.out_file=-
32 -C bp.pl011_uart3.out_file=-
/Zephyr-Core-3.6.0/boards/arm64/fvp_base_revc_2xaemv8a/
Dboard.cmake12 -C bp.pl011_uart0.out_file=-
16 -C bp.pl011_uart1.out_file=-
20 -C bp.pl011_uart2.out_file=-
24 -C bp.pl011_uart3.out_file=-
/Zephyr-Core-3.6.0/boards/arm/mps3_an547/
Dboard.cmake39 -C mps3_board.uart0.out_file=-
41 -C mps3_board.uart1.out_file=-
43 -C mps3_board.uart2.out_file=-
/Zephyr-Core-3.6.0/tests/subsys/fs/littlefs/src/
Dtest_lfs_perf.c92 goto out_file; in write_read()
131 goto out_file; in write_read()
148 out_file: in write_read()
/Zephyr-Core-3.6.0/scripts/dts/
Dgen_defines.py1083 def write_pickled_edt(edt, out_file): argument
1086 with open(out_file, 'wb') as f: