Lines Matching refs:job_list
129 static Job *job_list; /* job list */
292 for (j = job_list; j != NULL; j = j->next) {
730 for (j = job_list; j; j = j->next)
925 for (j = job_list; j != NULL; j = j->next) {
976 j = job_list;
989 for (j = job_list; j; j = tmp) {
1010 for (j = job_list; j; j = j->next) {
1022 for (j = job_list; j; j = tmp) {
1079 for (jl = job_list; jl; jl = jl->next)
1348 for (j = job_list; j; j = j->next)
1381 for (j = job_list; j != NULL; j = j->next)
1571 if (j == job_list)
1573 else if (j == job_list->next)
1693 for (j = job_list; j != NULL; j = j->next)
1700 for (j = job_list; j != NULL; j = j->next)
1715 if (job_list != NULL)
1716 return (job_list);
1720 if (job_list != NULL && job_list->next)
1721 return (job_list->next);
1728 for (j = job_list; j != NULL; j = j->next)
1736 for (j = job_list; j != NULL; j = j->next)
1754 for (j = job_list; j != NULL; j = j->next)
1806 j = job_list;
1835 * Take job out of job_list and put old structures into free list.
1846 prev = &job_list;
1847 curr = job_list;
1878 * put j in a particular location (taking it out job_list if it is there
1889 prev = &job_list;
1890 curr = job_list;
1900 j->next = job_list;
1901 job_list = j;
1905 prev = &job_list;
1906 curr = job_list;