Lines Matching full:tail
14 list_node_t *tail;
79 return list->tail->data;
94 if (list->tail == prev_node)
95 list->tail = node;
110 if (list->tail == NULL)
111 list->tail = list->head;
125 if (list->tail == NULL) {
127 list->tail = node;
129 list->tail->next = node;
130 list->tail = node;
145 if (list->tail == list->head)
146 list->tail = next;
154 if (list->tail == node)
155 list->tail = prev;
167 list->tail = NULL;