Home
last modified time | relevance | path

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

/tools/asuite/aidegen/lib/
Dmodule_info_util.py101 json_path = common_util.get_blueprint_json_path(
103 bp_dict = common_util.get_json_dict(json_path)
224 def _is_new_json_file_generated(json_path, original_file_mtime): argument
234 if not os.path.isfile(json_path):
236 return original_file_mtime != os.path.getmtime(json_path)
Dcommon_util.py577 def dump_json_dict(json_path, data): argument
584 with open(json_path, 'w', encoding='utf-8') as json_file:
589 def get_json_dict(json_path): argument
598 with open(json_path, 'r', encoding='utf-8') as jfile:
Dmodule_info_unittest.py117 json_path = os.path.join(os.path.dirname(os.path.dirname(__file__)),
120 module_file = json_path
/tools/asuite/atest/
Dmodule_info.py1235 def _create_json(data_map: Dict[str, Any], json_path: Path):
1242 if json_path.is_file():
1243 json_path.unlink()
1248 shutil.move(temp_json.name, json_path)
1250 logging.debug('%s is created successfully.', json_path)
/tools/asuite/atest/integration_tests/
Datest_integration_test.py179 json_path = self.get_results_dir_path() / 'test_result'
180 with open(json_path, 'r', encoding='utf-8') as f:
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/gnss/
DGnssBlankingBase.py280 json_path = os.path.join(gps_log_path, json_file)
283 df_ttff_ffpe.to_json(json_path, orient='table', index=False)