Home | History | Annotate | Download | only in tko

Lines Matching full:reparse

25     parser.add_option("-r", help="Reparse the results of a job",
26 dest="reparse", action="store_true")
180 def parse_one(db, jobname, path, reparse, mail_on_failure):
187 @param reparse: True/False, whether this is reparsing of the job.
197 if not reparse:
237 if reparse and old_job_idx is not None:
244 tko_utils.dprint("! Reparse returned new test "
308 if reparse:
372 def parse_leaf_path(db, path, level, reparse, mail_on_failure):
378 @param reparse: True/False, whether this is reparsing of the job.
386 db.run_with_retry(parse_one, db, jobname, path, reparse,
393 def parse_path(db, path, level, reparse, mail_on_failure):
399 @param reparse: True/False, whether this is reparsing of the job.
412 new_job = parse_leaf_path(db, path, level, reparse, mail_on_failure)
417 new_jobs = parse_path(db, jobpath, level + 1, reparse, mail_on_failure)
421 new_job = parse_leaf_path(db, path, level, reparse, mail_on_failure)
492 new_jobs = parse_path(db, path, options.level, options.reparse,