Searched refs:job_idx (Results 1 – 11 of 11) sorted by relevance
/external/autotest/tko/ |
D | db.py | 468 job_idx = self.find_job(tag) 469 for test_idx in self.find_tests(job_idx): 476 where = {'job_idx' : job_idx} 493 if job.job_idx is not None: 495 'tko_jobs', data, {'job_idx': job.job_idx}, commit=commit) 498 job.job_idx = self.get_last_autonumber_value() 536 'tko_job_idx': job.job_idx, 560 where = {'job_id': job.job_idx, 'key': key} 578 data = {'job_idx':job.job_idx, 'test':test.testname, 684 if job.job_idx is None: [all …]
|
D | frontend.py | 222 def __init__(self, db, test_idx, job_idx, testname, subdir, kernel_idx, argument 225 self.job = job(db, job_idx) 280 def __init__(self, db, job_idx): argument 281 where = {'job_idx' : job_idx} 285 self.job_idx = job_idx
|
D | parse.py | 357 job.job_idx = old_job_idx 429 tests_in_db = db.find_tests(job.job_idx) 435 (job.job_idx, len(job.tests), tests_in_db_count)) 452 afe_job_id=orig_afe_job_id).job_idx 453 _invalidate_original_tests(orig_job_idx, job.job_idx) 568 old_job_idx = job.job_idx
|
D | tko.proto | 54 optional int64 job_idx = 17; field
|
D | job_serializer.py | 191 pb_job.job_idx = tko_job.index
|
D | models.py | 33 self.job_idx = None
|
D | job_serializer_unittest.py | 163 self.pb_job.job_idx)
|
/external/autotest/database/ |
D | schema_129.sql | 1112 …CONSTRAINT `tko_job_keyvals_ibfk_1` FOREIGN KEY (`job_id`) REFERENCES `tko_jobs` (`job_idx`) ON DE… 1124 `job_idx` int(10) unsigned NOT NULL AUTO_INCREMENT, 1138 PRIMARY KEY (`job_idx`), 1355 …k_references_ibfk_1` FOREIGN KEY (`tko_job_idx`) REFERENCES `tko_jobs` (`job_idx`) ON DELETE CASCA… 1538 `job_idx` int(10) unsigned NOT NULL, 1553 KEY `job_idx` (`job_idx`), 1561 CONSTRAINT `tests_to_jobs_ibfk` FOREIGN KEY (`job_idx`) REFERENCES `tko_jobs` (`job_idx`),
|
/external/autotest/venv/skylab_suite/ |
D | tko_test_views.py | 123 for job_idx, name, s_idx, reason in cursor.fetchall(): 124 job_rows[job_idx].append(
|
/external/autotest/contrib/ |
D | remove_old_tests_in_tko.sql | 35 WHILE EXISTS (SELECT job_idx FROM tko_jobs WHERE started_time < @cutoff_date LIMIT 1) DO
|
/external/autotest/frontend/tko/ |
D | models.py | 172 job_idx = dbmodels.AutoField(primary_key=True) variable in Job 700 job_idx = dbmodels.IntegerField('job index', null=True, blank=True) variable in TestView
|