Home
last modified time | relevance | path

Searched refs:machine_idx (Results 1 – 6 of 6) sorted by relevance

/external/autotest/tko/
Dtest.cgi37 machine_idx = [test.machine_idx for test in tests]
42 uniq_machine_idx = list(set(machine_idx))
54 if test.machine_idx == machine
Dfrontend.py223 status_num, reason, machine_idx): argument
231 self.machine_idx = machine_idx
274 where = {'machine_idx' : self.machine_idx}
284 self.tag, self.machine_idx = rows[0]
Ddb.py507 'machine_idx': job.machine_idx,
581 'reason':test.reason, 'machine_idx':job.machine_idx,
670 job.machine_idx = self._lookup_machine(job.machine)
671 if not job.machine_idx:
672 job.machine_idx = self._insert_machine(job, commit=commit)
/external/autotest/database/
Dschema_129.sql1128 `machine_idx` int(10) unsigned NOT NULL,
1142 KEY `machine_idx` (`machine_idx`),
1150 …CONSTRAINT `tko_jobs_ibfk_1` FOREIGN KEY (`machine_idx`) REFERENCES `tko_machines` (`machine_idx`)…
1179 `machine_idx` int(10) unsigned NOT NULL AUTO_INCREMENT,
1183 PRIMARY KEY (`machine_idx`),
1544 `machine_idx` int(10) unsigned NOT NULL,
1552 KEY `machine_idx` (`machine_idx`),
1564 …CONSTRAINT `tko_tests_ibfk_3` FOREIGN KEY (`machine_idx`) REFERENCES `tko_machines` (`machine_idx`…
/external/autotest/frontend/tko/
Drpc_interface.py294 machine_idx = result_dict['machine_idx']
298 host_info[hostname]['id'] = machine_idx
Dmodels.py126 machine_idx = dbmodels.AutoField(primary_key=True) variable in Machine
706 machine_idx = dbmodels.IntegerField('host index') variable in TestView