Home | History | Annotate | Download | only in make

Lines Matching refs:first

56 	for (ln = list->first; ln != NULL; ln = next) {
67 for (ln = list->first; ln != NULL; ln = next) {
88 if (ln == list->first)
89 list->first = newNode;
100 ln = LstNodeNew(NULL, list->first, datum);
102 if (list->first == NULL) {
103 list->first = ln;
106 list->first->prev = ln;
107 list->first = ln;
122 list->first = ln;
144 if (list->first == ln)
145 list->first = ln->next;
172 * Return the first node that contains the given datum, or NULL.
183 for (ln = list->first; ln != NULL; ln = ln->next)
197 if (src->first != NULL) {
198 src->first->prev = dst->last;
200 dst->last->next = src->first;
202 dst->first = src->first;
207 src->first = NULL;
228 for (ln = src->first; ln != NULL; ln = ln->next)
236 void *datum = list->first->datum;
237 Lst_Remove(list, list->first);