Searched refs:report_file (Results 1 – 6 of 6) sorted by relevance
/tools/asuite/atest/tools/ |
D | start_avd.py | 63 def acloud_create(report_file, args, no_metrics_notice=True): argument 89 result = au.load_json_safely(report_file) 93 with open(report_file, 'w+') as _wfile: 126 report_file = get_report_file(results_dir, acloud_args) 128 func=acloud_create, args=[report_file, acloud_args, args.no_metrics] 130 return acloud_proc, report_file 133 def probe_acloud_status(report_file, find_build_duration): argument 149 if Path(report_file).exists(): 150 result = au.load_json_safely(report_file) 161 acloud_duration = get_acloud_duration(report_file) [all …]
|
D | start_avd_unittest.py | 35 report_file = '/tmp/acloud_status.json' 37 arg_with_equal = '-a --report-file={} --all'.format(report_file) 39 start_avd.get_report_file('/abc', arg_with_equal), report_file 42 arg_with_equal = '-b --report_file={} --ball'.format(report_file) 44 start_avd.get_report_file('/abc', arg_with_equal), report_file 47 arg_without_equal = '-c --report-file {} --call'.format(report_file) 49 start_avd.get_report_file('/abc', arg_without_equal), report_file 52 arg_without_equal = '-d --report_file {} --dall'.format(report_file) 54 start_avd.get_report_file('/abc', arg_without_equal), report_file 59 start_avd.get_report_file('/tmp', arg_without_report), report_file
|
/tools/acloud/public/ |
D | report.py | 259 def Dump(self, report_file): argument 273 if not report_file: 276 with open(report_file, "w") as f: 279 os.path.abspath(report_file))
|
D | acloud_main.py | 479 if reporter and args.report_file: 480 reporter.Dump(args.report_file)
|
/tools/acloud/public/acloud_kernel/ |
D | acloud_kernel.py | 84 report.Dump(args.report_file)
|
/tools/asuite/atest/ |
D | atest_main.py | 1013 proc_acloud, report_file = _get_acloud_proc_and_log(args, results_dir) 1141 report_file, find_duration + build_duration
|