Searched refs:input_file (Results 1 – 7 of 7) sorted by relevance
/Zephyr-Core-3.5.0/scripts/ |
D | gen_gcov_files.py | 17 def retrieve_data(input_file): argument 21 with open(input_file, 'r') as fp: 40 print("incomplete data captured from %s" % input_file) 78 input_file = args.input 80 extracted_coverage_info = retrieve_data(input_file)
|
/Zephyr-Core-3.5.0/scripts/build/ |
D | gen_offset_header.py | 29 def gen_offset_header(input_name, input_file, output_file): argument 41 obj = ELFFile(input_file) 80 input_file = open(args.input, 'rb') variable 83 ret = gen_offset_header(args.input, input_file, output_file)
|
/Zephyr-Core-3.5.0/cmake/ |
D | cfb.cmake | 6 input_file # The TrueType/OpenType font file or the image file 17 --input ${input_file} 30 input_file # The TrueType/OpenType font file or the image file 38 generate_cfb_font(${input_file} ${output_file} ${width} ${height} ${ARGN}) 48 input_file # The TrueType/OpenType font file or image file 63 generate_cfb_font_for_gen_target(${target} ${input_file} ${output_file}
|
/Zephyr-Core-3.5.0/scripts/utils/ |
D | pinctrl_nrf_migrate.py | 176 configs: List[DeviceConfiguration], input_file: Path, header: str 187 pinctrl_file = input_file.parent / (input_file.stem + "-pinctrl.dtsi") 635 def main(input_file: Path, no_backup: bool, skip_nrf_check: bool, header: str) -> None: 643 board_name = input_file.stem 644 content = open(input_file).readlines() 651 backup_file = input_file.parent / (board_name + ".bck" + input_file.suffix) 652 shutil.copy(input_file, backup_file) 657 with open(input_file, "w") as f: 660 gen_pinctrl(configs, input_file, header)
|
/Zephyr-Core-3.5.0/soc/arm/nuvoton_npcx/common/ecst/ |
D | ecst.py | 168 input_file = ecst_args.input 172 if not input_file: 175 input_file_path = Path(input_file) 273 input_file = Path(ecst_args.input) 275 input_file_size = input_file.stat().st_size 530 with input_file_path.open("r+b") as input_file: 533 input_file.seek(ARM_FW_ENTRY_POINT_OFFSET + 535 fw_entry_byte = input_file.read(4) 540 input_file.close() 553 input_file.close() [all …]
|
/Zephyr-Core-3.5.0/scripts/pylib/twister/twisterlib/ |
D | coverage.py | 40 def retrieve_gcov_data(input_file): argument 41 logger.debug("Working on %s" % input_file) 45 with open(input_file, 'r') as fp:
|
/Zephyr-Core-3.5.0/cmake/modules/ |
D | extensions.cmake | 2080 # The argument 'input_file' is in input parameter with the path to the 2085 function(toolchain_parse_make_rule input_file include_files) 2086 file(STRINGS ${input_file} input)
|