Home
last modified time | relevance | path

Searched refs:job_list (Results 1 – 5 of 5) sorted by relevance

/external/autotest/site_utils/
Dcollect_suite_time_stats.py241 job_list = dut_jobs_dict.setdefault(dut, [])
242 job_list.append(job_id)
251 def get_job_timestamps(job_list, job_info_dict): argument
262 tko = tko_models.Job.objects.filter(afe_job_id__in=job_list)
263 hqe = models.HostQueueEntry.objects.filter(job_id__in=job_list)
271 for job_id in job_list:
276 def get_job_tasks(job_list, job_info_dict): argument
287 batch_constraints=[('job_id', job_list)])
307 dut_jobs_dict, job_list = get_child_jobs_info(
310 get_job_timestamps(job_list, job_info_dict)
[all …]
/external/mksh/src/
Djobs.c115 static Job *job_list; /* job list */ variable
284 for (j = job_list; j != NULL; j = j->next) { in j_exit()
719 for (j = job_list; j; j = j->next) in waitfor()
914 for (j = job_list; j != NULL; j = j->next) { in j_stopped_running()
965 j = job_list; in j_jobs()
978 for (j = job_list; j; j = tmp) { in j_jobs()
999 for (j = job_list; j; j = j->next) { in j_notify()
1011 for (j = job_list; j; j = tmp) { in j_notify()
1062 for (jl = job_list; jl; jl = jl->next) in j_set_async()
1331 for (j = job_list; j; j = j->next) in j_sigchld()
[all …]
/external/fio/
Dserver.c499 static void fio_server_add_job_pid(struct flist_head *job_list, pid_t pid) in fio_server_add_job_pid() argument
502 fio_server_add_fork_item(pid, job_list); in fio_server_add_job_pid()
557 static void fio_server_check_jobs(struct flist_head *job_list) in fio_server_check_jobs() argument
559 fio_server_check_fork_items(job_list); in fio_server_check_jobs()
589 static int handle_run_cmd(struct flist_head *job_list, struct fio_net_cmd *cmd) in handle_run_cmd() argument
599 fio_server_add_job_pid(job_list, pid); in handle_run_cmd()
798 static int handle_command(struct flist_head *job_list, struct fio_net_cmd *cmd) in handle_command() argument
829 ret = handle_run_cmd(job_list, cmd); in handle_command()
874 FLIST_HEAD(job_list); in handle_connection()
891 if (!flist_empty(&job_list)) in handle_connection()
[all …]
/external/autotest/cli/
Djob.py104 class job_list(job_list_stat): class
107 super(job_list, self).__init__()
117 options, leftover = super(job_list, self).parse()
141 super(job_list, self).output(results, keys)
Djob_unittest.py214 testjob = job.job_list()