Home
last modified time | relevance | path

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

/tools/asuite/atest/
Datest_execution_info.py118 with open(result_path) as json_file:
119 result = json.load(json_file)
154 with open(path) as json_file:
155 result = json.load(json_file)
218 json_file = os.path.join(root, 'test_result')
219 with open(json_file) as result:
Dbug_detector.py87 with open(self.file) as json_file:
89 history = json.load(json_file)
Datest_utils.py508 with open(result_path) as json_file:
509 full_result_content = json.load(json_file)
1024 with open(path) as json_file:
1025 json.load(json_file)
Dcli_translator.py335 with open(test_mapping_file) as json_file:
336 return re.sub(_COMMENTS_RE, _replace, json_file.read())
Dcli_translator_unittest.py401 with open(file_with_comments_golden) as json_file:
402 test_mapping_dict_gloden = json.load(json_file)
/tools/test/connectivity/acts/framework/acts/controllers/
Drelay_device_controller.py54 with open(config_filename) as json_file:
55 return _create_from_dict(json.load(json_file))
/tools/test/connectivity/acts_tests/tests/google/coex/functionality_tests/
DCoexBasicFunctionalityTest.py54 self.pri_ad, self.iperf["duration"], self.json_file,
275 (self.pri_ad, self.iperf["duration"], self.json_file,
DWlanWithHfpFunctionalityTest.py128 (self.pri_ad, self.iperf["duration"], self.json_file,
/tools/asuite/atest-py2/
Dbug_detector.py87 with open(self.file) as json_file:
89 history = json.load(json_file)
Dmodule_info.py106 with open(file_path) as json_file:
107 mod_info = json.load(json_file)
Dcli_translator.py253 with open(test_mapping_file) as json_file:
254 return re.sub(_COMMENTS_RE, _replace, json_file.read())
Dcli_translator_unittest.py368 with open(file_with_comments_golden) as json_file:
369 test_mapping_dict_gloden = json.load(json_file)
/tools/test/connectivity/tools/
Dread_acts_results.py37 with open(acts_summary_filename) as json_file:
38 data = json.load(json_file)
/tools/test/connectivity/acts_tests/tests/google/coex/performance_tests/
DCoexBasicPerformanceTest.py45 (self.pri_ad, self.iperf['duration'], self.json_file,
DWlanWithA2dpPerformanceTest.py81 (self.pri_ad, self.iperf["duration"], self.json_file,
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/coex/
DCoexBaseTest.py120 self.json_file = os.path.join(self.log_path, 'test_results.json')
138 with open(self.json_file, 'a') as results_file:
DCoexPerformanceBaseTest.py272 with open(self.json_file, 'a') as results_file:
/tools/asuite/aidegen/lib/
Dcommon_util.py587 with open(json_path, 'w') as json_file:
588 json.dump(data, json_file, indent=4)
/tools/test/connectivity/acts_tests/acts_contrib/test_utils/wifi/
Dwifi_performance_test_utils.py196 json_file=None): argument
197 if json_file:
198 self.load_from_json(json_file)
413 with open(file_path, 'r') as json_file:
414 fig_dict = json.load(json_file)