Home
last modified time | relevance | path

Searched refs:json_file (Results 1 – 11 of 11) 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/west_commands/runners/
Dnrfutil.py125 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/
Dreports.py141 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/
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.py244 with open(path, "r") as json_file:
245 json_content = json.load(json_file)
Dtest_report.py159 with open(path, "r") as json_file:
160 data = json.load(json_file)
/Zephyr-latest/cmake/modules/
Dyaml.cmake518 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/
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=(',',':'))