Home
last modified time | relevance | path

Searched refs:status_file (Results 1 – 11 of 11) sorted by relevance

/external/toolchain-utils/llvm_tools/
Dupdate_tryjob_status.py126 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 …]
Dmodify_a_tryjob.py99 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 …]
Dupdate_tryjob_status_unittest.py336 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 …]
Dmodify_a_tryjob_unittest.py122 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)
DREADME.md314 --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/
Dhardware_DiskFirmwareUpgrade.py30 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/
Dlock_unittest.py41 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/
Dprocess_linux.cc170 FilePath status_file = in GetPidInNamespace() local
172 if (!ReadFileToString(status_file, &status)) { in GetPidInNamespace()
Dprocess_metrics_linux.cc66 FilePath status_file = internal::GetProcPidDir(pid).Append(filename); in ReadProcFileToTrimmedStringPairs() local
67 if (!ReadFileToString(status_file, &status_data)) in ReadProcFileToTrimmedStringPairs()
/external/autotest/site_utils/
Dgenerate_test_report309 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/
Dhtml_report.py1612 status_file = os.path.join(resdir, tag, 'status')
1620 log += get_info_file(status_file)