Searched refs:json_file (Results 1 – 25 of 25) sorted by relevance
/tools/asuite/atest/ |
D | atest_execution_info.py | 119 with open(result_path) as json_file: 120 result = json.load(json_file) 155 with open(path) as json_file: 156 result = json.load(json_file) 219 json_file = os.path.join(root, 'test_result') 220 with open(json_file) as result:
|
D | bug_detector.py | 88 with open(self.file) as json_file: 90 history = json.load(json_file)
|
D | module_info.py | 652 with open(java_bp_info_path) as json_file: 653 java_bp_infos = json.load(json_file) 661 with open(cc_bp_info_path) as json_file: 662 cc_bp_infos = json.load(json_file)
|
D | atest_utils.py | 611 with open(result_path) as json_file: 612 full_result_content = json.load(json_file) 1130 with open(path) as json_file: 1131 json.load(json_file) 1598 with open(result_path) as json_file: 1599 full_result_content = json.load(json_file)
|
D | cli_translator.py | 328 with open(test_mapping_file) as json_file: 329 return re.sub(_COMMENTS_RE, _replace, json_file.read())
|
D | cli_translator_unittest.py | 416 with open(file_with_comments_golden) as json_file: 417 test_mapping_dict_gloden = json.load(json_file)
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/wifi_performance_test_utils/ |
D | bokeh_figure.py | 77 json_file=None): argument 78 if json_file: 79 self.load_from_json(json_file) 318 with open(file_path, 'r') as json_file: 319 fig_dict = json.load(json_file)
|
/tools/asuite/atest-py2/ |
D | atest_execution_info.py | 107 with open(result_path) as json_file: 108 result = json.load(json_file) 130 with open(path) as json_file: 131 result = json.load(json_file)
|
D | bug_detector.py | 87 with open(self.file) as json_file: 89 history = json.load(json_file)
|
D | module_info.py | 106 with open(file_path) as json_file: 107 mod_info = json.load(json_file)
|
D | cli_translator.py | 253 with open(test_mapping_file) as json_file: 254 return re.sub(_COMMENTS_RE, _replace, json_file.read())
|
D | atest_utils.py | 416 with open(result_path) as json_file: 417 full_result_content = json.load(json_file)
|
D | cli_translator_unittest.py | 368 with open(file_with_comments_golden) as json_file: 369 test_mapping_dict_gloden = json.load(json_file)
|
/tools/test/connectivity/acts/framework/acts/controllers/ |
D | relay_device_controller.py | 54 with open(config_filename) as json_file: 55 return _create_from_dict(json.load(json_file))
|
/tools/asuite/aidegen/lib/ |
D | module_info.py | 58 with open(file_path, encoding='utf8') as json_file: 59 mod_info = json.load(json_file)
|
D | common_util.py | 587 with open(json_path, 'w') as json_file: 588 json.dump(data, json_file, indent=4)
|
/tools/test/connectivity/acts_tests/tests/google/coex/functionality_tests/ |
D | CoexBasicFunctionalityTest.py | 54 self.pri_ad, self.iperf["duration"], self.json_file, 275 (self.pri_ad, self.iperf["duration"], self.json_file,
|
D | WlanWithHfpFunctionalityTest.py | 128 (self.pri_ad, self.iperf["duration"], self.json_file,
|
/tools/test/connectivity/tools/ |
D | read_acts_results.py | 37 with open(acts_summary_filename) as json_file: 38 data = json.load(json_file)
|
/tools/external_updater/ |
D | external_updater.py | 212 def write_json(json_file: str, results: Dict[str, Dict[str, str]]) -> List[str]: 214 with Path(json_file).open('w') as res_file:
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/coex/ |
D | CoexBaseTest.py | 120 self.json_file = os.path.join(self.log_path, 'test_results.json') 138 with open(self.json_file, 'a') as results_file:
|
D | CoexPerformanceBaseTest.py | 272 with open(self.json_file, 'a') as results_file:
|
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/gnss/ |
D | GnssBlankingBase.py | 239 json_file = 'gps_log_{}.json'.format(json_tag) 240 json_path = os.path.join(gps_log_path, json_file)
|
/tools/test/connectivity/acts_tests/tests/google/coex/performance_tests/ |
D | CoexBasicPerformanceTest.py | 45 (self.pri_ad, self.iperf['duration'], self.json_file,
|
D | WlanWithA2dpPerformanceTest.py | 81 (self.pri_ad, self.iperf["duration"], self.json_file,
|