Searched defs:list_empty (Results 1 - 1 of 1) sorted by relevance

/include/linux/
H A Dlist.h96 * Note: list_empty() on entry does not return true after this, the entry is
184 * list_empty - tests whether a list is empty
187 static inline int list_empty(const struct list_head *head) function
219 if (!list_empty(head)) {
231 return !list_empty(head) && (head->next == head->prev);
263 if (list_empty(head))
296 if (!list_empty(list))
308 if (!list_empty(list))
322 if (!list_empty(list)) {
339 if (!list_empty(lis
[all...]

Completed in 47 milliseconds