Searched refs:status_file (Results 1 – 11 of 11) sorted by relevance
/external/toolchain-utils/llvm_tools/ |
D | update_tryjob_status.py | 126 if not os.path.isfile(args_output.status_file) or \ 127 not args_output.status_file.endswith('.json'): 129 ': %s' % args_output.status_file) 197 def GetCustomScriptResult(custom_script, status_file, tryjob_contents): argument 232 os.path.dirname(status_file), os.path.basename(temp_json_file)) 248 def UpdateTryjobStatus(revision, set_status, status_file, chroot_path, argument 275 with open(status_file) as tryjobs: 279 sys.exit('No tryjobs in %s' % status_file) 286 'Unable to find tryjob for %d in %s' % (revision, status_file)) 302 custom_script, status_file, bisect_contents['jobs'][tryjob_index]) [all …]
|
D | modify_a_tryjob.py | 99 if not os.path.isfile(args_output.status_file) or \ 100 not args_output.status_file.endswith('.json'): 102 ': %s' % args_output.status_file) 184 def PerformTryjobModification(revision, modify_tryjob, status_file, extra_cls, argument 212 with open(status_file) as tryjobs: 216 sys.exit('No tryjobs in %s' % status_file) 224 (revision, status_file)) 251 (tryjob_index, status_file)) 274 raise ValueError('Failed to add tryjob to %s' % status_file) 279 with open(status_file, 'w') as update_tryjobs: [all …]
|
D | update_tryjob_status_unittest.py | 336 with open(temp_json_file) as status_file: 337 bisect_contents = json.load(status_file) 377 with open(temp_json_file) as status_file: 378 bisect_contents = json.load(status_file) 419 with open(temp_json_file) as status_file: 420 bisect_contents = json.load(status_file) 460 with open(temp_json_file) as status_file: 461 bisect_contents = json.load(status_file) 509 with open(temp_json_file) as status_file: 510 bisect_contents = json.load(status_file) [all …]
|
D | modify_a_tryjob_unittest.py | 122 with open(temp_json_file) as status_file: 123 bisect_contents = json.load(status_file) 183 with open(temp_json_file) as status_file: 184 bisect_contents = json.load(status_file) 341 with open(temp_json_file) as status_file: 342 bisect_contents = json.load(status_file)
|
D | README.md | 314 --status_file /abs/path/to/tryjob/file 317 The above example uses the file in `--status_file` to update a tryjob in that 332 --status_file /abs/path/to/tryjob/file 341 --status_file /abs/path/to/tryjob/file 350 --status_file /abs/path/to/tryjob/file 359 --status_file /abs/path/to/tryjob/file \ 407 --status_file /abs/path/to/tryjob/file 412 tryjob is then inserted into the file passed in via `--status_file`. 426 --status_file /abs/path/to/tryjob/file 435 --status_file /abs/path/to/tryjob/file
|
/external/autotest/client/site_tests/hardware_DiskFirmwareUpgrade/ |
D | hardware_DiskFirmwareUpgrade.py | 30 status_file = os.path.join(self.resultsdir, 'status') 32 '--status %s' % (status_file), 39 with open(status_file) as sf:
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | lock_unittest.py | 41 def _ReadFileWithExclusiveLockNonBlocking(target_file, status_file): argument 45 with open(status_file, 'w') as f2: 48 with open(status_file, 'w') as f2:
|
/external/libchrome/base/process/ |
D | process_linux.cc | 170 FilePath status_file = in GetPidInNamespace() local 172 if (!ReadFileToString(status_file, &status)) { in GetPidInNamespace()
|
D | process_metrics_linux.cc | 66 FilePath status_file = internal::GetProcPidDir(pid).Append(filename); in ReadProcFileToTrimmedStringPairs() local 67 if (!ReadFileToString(status_file, &status_data)) in ReadProcFileToTrimmedStringPairs()
|
/external/autotest/site_utils/ |
D | generate_test_report | 309 status_file = os.path.join(testdir, 'status.log') 310 if not os.path.isfile(status_file): 311 status_file = os.path.join(testdir, 'status') 312 if not os.path.isfile(status_file): 318 status_raw = open(status_file, 'r').read()
|
/external/autotest/client/tools/ |
D | html_report.py | 1612 status_file = os.path.join(resdir, tag, 'status') 1620 log += get_info_file(status_file)
|