Home | History | Annotate | Download | only in init

Lines Matching full:item

198 void list_add_tail(struct listnode *head, struct listnode *item)
200 item->next = head;
201 item->prev = head->prev;
202 head->prev->next = item;
203 head->prev = item;
206 void list_remove(struct listnode *item)
208 item->next->prev = item->prev;
209 item->prev->next = item->next;