Lines Matching refs:entry
35 * list_entry - get the struct for this entry
55 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
77 * Insert a new entry between two known consecutive entries.
93 * list_add_tail - add a new entry
94 * @new: new entry to be added
97 * Insert a new entry before the specified head.
106 * Delete a list entry by making the prev/next entries
121 * list_del - deletes entry from list.
122 * @entry: the element to delete from the list.
123 * Note: list_empty() on entry does not return true after this, the entry is
126 static inline void list_del(struct list_head *entry)
128 __list_del(entry->prev, entry->next);
129 entry->next = (struct list_head*)LIST_POISON1;
130 entry->prev = (struct list_head*)LIST_POISON2;