Lines Matching defs:next
611 for (e = dir_head, n = 0; e; e = e->next, n++)
1424 for (n = 1, e = dir_head; e; n++, e = e->next)
1713 for (n = 0, e = dir_head; e && n < p; n++, e = e->next)
1841 struct cam_dirlist *e, *next;
1844 for (e = dir_head; e; e = next)
1847 next = e->next;
2062 cur->next = NULL;
2070 cur->next = dir_head;
2076 for (e = dir_head; e->next; e = e->next)
2078 if (strcmp (e->next->name, cur->name) > 0)
2080 cur->next = e->next;
2081 e->next = cur;
2085 e->next = cur;
2104 dir_head = dir_head->next;
2109 for (e = dir_head; e->next; e = e->next)
2111 if (strcmp (fname, e->next->name) == 0)
2113 cur = e->next;
2114 e->next = e->next->next;