Searched refs:json_file (Results 1 – 11 of 11) 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/west_commands/runners/ |
| D | nrfutil.py | 125 def _append_batch(self, op, json_file): argument 154 json_file = Path(self.hex_).parent / 'generated_nrfutil_batch.json' 155 json_file.unlink(missing_ok=True) 157 self._append_batch(op, json_file)
|
| /Zephyr-latest/scripts/pylib/twister/twisterlib/ |
| D | reports.py | 141 def xunit_report_suites(self, json_file, filename): argument 144 with open(json_file) as json_results: 207 def xunit_report(self, json_file, filename, selected_platform=None, full_report=False): argument 216 with open(json_file) as json_results: 493 with open(filename, 'w') as json_file: 494 json.dump(report, json_file, indent=4, separators=(',',':'), cls=ReportingJSONEncoder) 774 json_file = filename + ".json" 775 self.json_report(json_file, version=self.env.version, 780 self.xunit_report(json_file, filename + ".xml", full_report=False) 781 self.xunit_report(json_file, filename + "_report.xml", full_report=True) [all …]
|
| /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 | 244 with open(path, "r") as json_file: 245 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/cmake/modules/ |
| D | yaml.cmake | 518 DEPENDS $<TARGET_PROPERTY:${save_target},json_file> 520 -DJSON_FILE="$<TARGET_PROPERTY:${save_target},json_file>" 532 set(json_file ${yaml_file_no_ext}_${genex_save_count}.json) variable 533 set_property(TARGET ${save_target} PROPERTY json_file ${json_file}) 536 set_property(TARGET ${save_target} APPEND PROPERTY temp_files ${json_file}) 538 FILE(GENERATE OUTPUT ${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=(',',':'))
|