Home
last modified time | relevance | path

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

/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/
H A Dpackage_manager.py56 json_file = _get_json_file(f)
57 if json_file:
58 needed_packages.update(_get_needed_packages(json_file))
67 json_file = '%s.json' % module_path.rsplit('.', 1)[0]
68 if os.path.isfile(module_path) and os.path.isfile(json_file):
69 return json_file
73 def _get_needed_packages(json_file, test=None): argument
81 with open(json_file) as f:
187 json_file = _get_json_file(test_file)
189 if json_file:
[all …]
H A Ddump.py71 with open(fullname, 'w') as json_file:
72 json.dump(output, json_file, indent=4)
/OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/tools/iq_check/
H A Diq_check.c9 FILE* json_file = NULL; in main() local
21 json_file = fopen("rkaiq_ui_template.json","w"); in main()
22 fprintf(json_file, "%s\n", _j2s_template_json); in main()
26 fclose(json_file); in main()
/OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/
H A Doetest.py417 json_file = self._getJsonFile(module)
418 if json_file:
419 needed_packages = self._getNeededPackages(json_file)
472 json_file = "%s.json" % module_file.rsplit(".", 1)[0]
473 if os.path.isfile(module_file) and os.path.isfile(json_file):
474 return json_file
478 def _getNeededPackages(self, json_file, test=None): argument
490 with open(json_file) as f:
/OK3568_Linux_fs/yocto/poky/meta/lib/oe/
H A Ddata.py24 def export2json(d, json_file, expand=True, searchString="",replaceString=""): argument
50 with open(json_file, "w") as f:
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dtestexport.bbclass120 json_file = _get_json_file(f)
121 if json_file:
122 shutil.copy2(json_file, cases_path)