Home
last modified time | relevance | path

Searched refs:input_file (Results 1 – 10 of 10) sorted by relevance

/Zephyr-latest/scripts/
Dgen_gcov_files.py17 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-latest/scripts/build/
Dgen_offset_header.py29 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-latest/tests/net/socket/tls_configurations/
DCMakeLists.txt16 function(pem_to_mbedtls target input_file)
17 file(READ credentials/${input_file} input_file_content)
19 set(GENERATED_FILE ${gen_dir}/${input_file}.inc)
21 generate_unique_target_name_from_filename(${input_file} generated_target_name)
/Zephyr-latest/soc/nuvoton/npcm/common/esiost/
Desiost.py105 input_file = esiost_args.input
109 if not input_file:
112 input_file_path = Path(input_file)
219 with input_file_path.open("r+b") as input_file:
220 input_file.seek(ARM_FW_ENTRY_POINT_OFFSET)
221 fw_arm_entry_byte = input_file.read(4)
225 input_file.seek(ARM_FW_ENTRY_POINT_OFFSET + HEADER_SIZE)
226 fw_arm_entry_byte = input_file.read(4)
239 input_file.close()
283 with input_file_path.open("r+b") as input_file:
[all …]
/Zephyr-latest/cmake/
Dcfb.cmake6 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-latest/modules/mbedtls/
Dcreate_psa_files.py74 def parse_psa_symbols(input_file: str):
76 with open(input_file) as file:
114 with open(file_name) as input_file:
115 file_content = input_file.read()
/Zephyr-latest/scripts/utils/
Dpinctrl_nrf_migrate.py176 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-latest/soc/nuvoton/npcx/common/ecst/
Decst.py168 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-latest/scripts/pylib/twister/twisterlib/
Dcoverage.py49 def retrieve_gcov_data(input_file): argument
54 with open(input_file) as fp:
/Zephyr-latest/cmake/modules/
Dextensions.cmake2399 # The argument 'input_file' is in input parameter with the path to the
2404 function(toolchain_parse_make_rule input_file include_files)
2405 file(STRINGS ${input_file} input)