Searched defs:HostQueueEntry (Results 1 - 2 of 2) sorted by relevance

/external/autotest/scheduler/
H A Dscheduler_models.py8 (particularly HostQueueEntry and Job) have considerable scheduler-specific logic
168 # instances for every HostQueueEntry object that we instantiate as
464 class HostQueueEntry(DBObject): class in inherits:DBObject
469 _timer = autotest_stats.Timer('scheduler_models.HostQueueEntry')
474 super(HostQueueEntry, self).__init__(id=id, row=row, **kwargs)
627 active = (status in models.HostQueueEntry.ACTIVE_STATUSES)
628 complete = (status in models.HostQueueEntry.COMPLETE_STATUSES)
662 if status is not models.HostQueueEntry.Status.ABORTED:
735 hosts_queue = HostQueueEntry.fetch('job_id = %s' % self.job.id)
765 self.set_status(models.HostQueueEntry
[all...]
/external/autotest/frontend/afe/
H A Dmodels.py78 queue_entry = HostQueueEntry.create(atomic_group=self, job=job,
134 queue_entry = HostQueueEntry.create(meta_host=self, job=job,
638 queue_entry = HostQueueEntry.create(host=self, job=job,
1200 full_status = HostQueueEntry.compute_full_status(status, aborted,
1610 entry = HostQueueEntry.create(job=self, is_template=is_template)
1743 class HostQueueEntry(dbmodels.Model, model_logic.ModelExtensions): class in inherits:dbmodels.Model, model_logic.ModelExtensions
1760 'Sent HostQueueEntry without corresponding '
1778 # If atomic_group is set, this is a virtual HostQueueEntry that will
1789 super(HostQueueEntry, self).__init__(*args, **kwargs)
1816 super(HostQueueEntry, sel
[all...]

Completed in 1175 milliseconds