Home
last modified time | relevance | path

Searched refs:machine_idx (Results 1 – 10 of 10) 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
Dmachine_benchmark.cgi84 machine_idx = {}
93 machine_idx[machine] = idx
104 for machine in machine_idx:
113 url += '?machine=' + str(machine_idx[machine])
Dmachine_test_attribute_graph.cgi17 machine_idx = form["machine"].value
21 machine = frontend.machine.select(db, {'machine_idx' : machine_idx})[0]
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.py446 job.machine_idx = self.lookup_machine(job.machine)
447 if not job.machine_idx:
448 job.machine_idx = self.insert_machine(job, commit=commit)
459 'machine_idx': job.machine_idx,
516 'reason':test.reason, 'machine_idx':job.machine_idx,
Dmachine_aggr.cgi42 machine_idx = form["machine"].value
49 machine = frontend.machine.select(db, {'hostname' : machine_idx})[0]
/external/autotest/database/
Dschema_051.sql894 `machine_idx` int(10) unsigned NOT NULL,
903 KEY `machine_idx` (`machine_idx`),
905 …CONSTRAINT `tko_jobs_ibfk_1` FOREIGN KEY (`machine_idx`) REFERENCES `tko_machines` (`machine_idx`)…
934 `machine_idx` int(10) unsigned NOT NULL auto_increment,
938 PRIMARY KEY (`machine_idx`),
1254 `machine_idx` int(10) unsigned NOT NULL,
1261 KEY `machine_idx` (`machine_idx`),
1269 …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
/external/autotest/server/
Dserver_job.py452 machine_idx = self.results_db.lookup_machine(self.job_model.machine)
454 self.job_model.machine_idx = machine_idx