Searched refs:machine_idx (Results 1 – 10 of 10) sorted by relevance
/external/autotest/tko/ |
D | test.cgi | 37 machine_idx = [test.machine_idx for test in tests] 42 uniq_machine_idx = list(set(machine_idx)) 54 if test.machine_idx == machine
|
D | machine_benchmark.cgi | 84 machine_idx = {} 93 machine_idx[machine] = idx 104 for machine in machine_idx: 113 url += '?machine=' + str(machine_idx[machine])
|
D | machine_test_attribute_graph.cgi | 17 machine_idx = form["machine"].value 21 machine = frontend.machine.select(db, {'machine_idx' : machine_idx})[0]
|
D | frontend.py | 223 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]
|
D | db.py | 446 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,
|
D | machine_aggr.cgi | 42 machine_idx = form["machine"].value 49 machine = frontend.machine.select(db, {'hostname' : machine_idx})[0]
|
/external/autotest/database/ |
D | schema_051.sql | 894 `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/ |
D | rpc_interface.py | 294 machine_idx = result_dict['machine_idx'] 298 host_info[hostname]['id'] = machine_idx
|
D | models.py | 126 machine_idx = dbmodels.AutoField(primary_key=True) variable in Machine 706 machine_idx = dbmodels.IntegerField('host index') variable in TestView
|
/external/autotest/server/ |
D | server_job.py | 452 machine_idx = self.results_db.lookup_machine(self.job_model.machine) 454 self.job_model.machine_idx = machine_idx
|