Lines Matching refs:afe
45 from autotest_lib.frontend.afe import models as afe_models
223 def get_tasks(cls, afe, host_id, start_time, end_time): argument
241 tasks = afe.get_host_special_tasks(
250 def get_status_task(cls, afe, host_id, end_time): argument
266 task = afe.get_host_status_task(host_id, query_end)
332 def get_hqes(cls, afe, host_id, start_time, end_time): argument
350 hqelist = afe.get_host_queue_entries_by_insert_time(
433 def get_host_history(cls, afe, hostname, start_time, end_time): argument
449 afehost = afe.get_hosts(hostname=hostname)[0]
450 return cls(afe, afehost, start_time, end_time)
454 def get_multiple_histories(cls, afe, start_time, end_time, labels=()): argument
473 hosts = afe.get_hosts(**kwargs)
474 return [cls(afe, h, start_time, end_time) for h in hosts]
477 def __init__(self, afe, afehost, start_time, end_time): argument
478 self._afe = afe