Home | History | Annotate | Download | only in src

Lines Matching defs:job_list

115 static Job *job_list;		/* job list */
284 for (j = job_list; j != NULL; j = j->next) {
719 for (j = job_list; j; j = j->next)
914 for (j = job_list; j != NULL; j = j->next) {
965 j = job_list;
978 for (j = job_list; j; j = tmp) {
999 for (j = job_list; j; j = j->next) {
1011 for (j = job_list; j; j = tmp) {
1062 for (jl = job_list; jl; jl = jl->next)
1331 for (j = job_list
1360 for (j = job_list; j != NULL; j = j->next)
1548 if (j == job_list)
1550 else if (j == job_list->next)
1657 for (j = job_list; j != NULL; j = j->next)
1664 for (j = job_list; j != NULL; j = j->next)
1679 if (job_list != NULL)
1680 return (job_list);
1684 if (job_list != NULL && job_list->next)
1685 return (job_list->next);
1692 for (j = job_list; j != NULL; j = j->next)
1700 for (j = job_list; j != NULL; j = j->next)
1718 for (j = job_list; j != NULL; j = j->next)
1759 for (j = job_list; j && j->job != i; j = j->next)
1789 * Take job out of job_list and put old structures into free list.
1800 prev = &job_list;
1801 curr = job_list;
1832 * put j in a particular location (taking it out job_list if it is there
1843 prev = &job_list;
1844 curr = job_list;
1854 j->next = job_list;
1855 job_list = j;
1859 prev = &job_list;
1860 curr = job_list;