Home
last modified time | relevance | path

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

/external/u-boot/common/
Dcli_hush.c1354 struct pipe *thejob; local
1358 for (thejob = job_list; thejob; thejob = thejob->next)
1359 if (thejob->jobid >= pi->jobid)
1360 pi->jobid = thejob->jobid + 1;
1364 thejob = job_list = xmalloc(sizeof(*thejob));
1366 for (thejob = job_list; thejob->next; thejob = thejob->next) /* nothing */;
1367 thejob->next = xmalloc(sizeof(*thejob));
1368 thejob = thejob->next;
1372 memcpy(thejob, pi, sizeof(struct pipe));
1373 thejob->next = NULL;
[all …]