Searched refs:json_file (Results 1 – 10 of 10) sorted by relevance
/Zephyr-latest/scripts/footprint/ |
D | upload_data.py | 63 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:
|
D | pack_as_twister.py | 285 with open(report_fname, "wt") as json_file: 287 json.dump(res, json_file, indent=4, separators=(',',':'))
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | reports.py | 133 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/ |
D | nrfutil.py | 112 json_file = os.fspath(hex_dir / 'generated_nrfutil_batch.json') 114 with open(json_file, "w") as f:
|
/Zephyr-latest/scripts/ci/coverage/ |
D | coverage_analysis.py | 256 json_file = { 270 … json_file['Covered_Functions'].append(json_covered_funciton) 276 … json_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/ |
D | test_coverage.py | 245 with open(path, "r") as json_file: 246 json_content = json.load(json_file)
|
D | test_report.py | 159 with open(path, "r") as json_file: 160 data = json.load(json_file)
|
/Zephyr-latest/scripts/build/ |
D | parse_syscalls.py | 205 update_file_if_changed(args.json_file, syscalls_in_json)
|
D | gen_syscalls.py | 471 with open(args.json_file, 'r') as fd:
|
/Zephyr-latest/scripts/ci/ |
D | test_plan.py | 515 with open(args.output_file, 'w', newline='') as json_file: 516 json.dump(data, json_file, indent=4, separators=(',',':'))
|