Home
last modified time | relevance | path

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

/Zephyr-latest/scripts/footprint/
Dupload_data.py63 def parse_file(json_file): argument
65 with open(json_file, "r") as fp:
111 json_file = os.path.basename(file)
112 if 'ram' in json_file:
Dpack_as_twister.py285 with open(report_fname, "wt") as json_file:
287 json.dump(res, json_file, indent=4, separators=(',',':'))
/Zephyr-latest/scripts/pylib/twister/twisterlib/
Dreports.py133 def xunit_report_suites(self, json_file, filename): argument
136 with open(json_file) as json_results:
199 def xunit_report(self, json_file, filename, selected_platform=None, full_report=False): argument
208 with open(json_file) as json_results:
483 with open(filename, 'w') as json_file:
484 json.dump(report, json_file, indent=4, separators=(',',':'))
764 json_file = filename + ".json"
765 self.json_report(json_file, version=self.env.version,
770 self.xunit_report(json_file, filename + ".xml", full_report=False)
771 self.xunit_report(json_file, filename + "_report.xml", full_report=True)
[all …]
/Zephyr-latest/scripts/west_commands/runners/
Dnrfutil.py112 json_file = os.fspath(hex_dir / 'generated_nrfutil_batch.json')
114 with open(json_file, "w") as f:
/Zephyr-latest/scripts/ci/coverage/
Dcoverage_analysis.py256 json_file = {
270json_file['Covered_Functions'].append(json_covered_funciton)
276json_file['Uncovered_Functions'].append(json_uncovered_funciton)
277 … comp_exists = [x for x in json_files if x['Path'] == json_file['Path']]
279 json_files.append(json_file)
/Zephyr-latest/scripts/tests/twister_blackbox/
Dtest_coverage.py245 with open(path, "r") as json_file:
246 json_content = json.load(json_file)
Dtest_report.py159 with open(path, "r") as json_file:
160 data = json.load(json_file)
/Zephyr-latest/scripts/build/
Dparse_syscalls.py205 update_file_if_changed(args.json_file, syscalls_in_json)
Dgen_syscalls.py471 with open(args.json_file, 'r') as fd:
/Zephyr-latest/scripts/ci/
Dtest_plan.py515 with open(args.output_file, 'w', newline='') as json_file:
516 json.dump(data, json_file, indent=4, separators=(',',':'))