Home | History | Annotate | Download | only in contrib

Lines Matching refs:afe

30     parser.add_argument('--afe', type=str, action='store',
31 help='AFE server to connect to')
37 def GetSuiteHQEs(suite_job_id, look_past_seconds, afe=None, tko=None):
40 @param suite_job_id: Suite's AFE job id.
43 @param afe: AFE database handle.
50 if afe is None:
51 afe = frontend.AFE()
79 child_jobs = afe.get_jobs(parent_job_id=suite_job_id)
81 hqes = afe.get_host_queue_entries(job_id__in=list(child_job_ids))
85 history = HostJobHistory.get_host_history(afe, hostname,
108 name_filter=None, status_filter=None, afe=None, tko=None):
111 @param suite_job_id: Suite's AFE job id.
116 @param afe: AFE database handle.
125 afe=afe, tko=tko)
165 afe = None
166 if options.afe:
167 afe = frontend.AFE(server=options.afe)
185 afe=afe, tko=tko)
195 status_filter=options.status_filter, afe=afe, tko=tko))