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

/external/e2fsprogs/lib/blkid/
H A Dlist.h94 * list_empty() on @entry does not return true after this, @entry is
113 * list_empty - tests whether a list is empty
116 _INLINE_ int list_empty(struct list_head *head) function
/external/e2fsprogs/lib/ext2fs/
H A Dkernel-list.h79 static __inline__ int list_empty(struct list_head *head) function
/external/f2fs-tools/include/
H A Dlist.h66 static inline int list_empty(const struct list_head *head) function
/external/oprofile/libutil/
H A Dop_list.h99 * Note: list_empty on entry does not return true after this, the entry is in an undefined state.
117 * list_empty - tests whether a list is empty
120 static __inline__ int list_empty(struct list_head const * head) function
/external/blktrace/btt/
H A Dlist.h107 * Note: list_empty on entry does not return true after this, the entry is
162 * list_empty - tests whether a list is empty
165 static inline int list_empty(const struct list_head *head) function
176 return list_empty(head) ? NULL : head->next;
212 if (!list_empty(list))
/external/yaffs2/yaffs2/
H A Ddevextras.h129 * Note: list_empty on entry does not return true after this, the entry is
148 * list_empty - tests whether a list is empty
151 static __inline__ int list_empty(struct list_head *head) function
/external/iptables/libiptc/
H A Dlinux_list.h183 * Note: list_empty on entry does not return true after this, the entry is
197 * Note: list_empty on entry does not return true after this,
257 * list_empty - tests whether a list is empty
260 static inline int list_empty(const struct list_head *head) function
304 if (!list_empty(list))
318 if (!list_empty(list)) {
/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Dlist.h95 * Note: list_empty() on entry does not return true after this, the entry is
183 * list_empty - tests whether a list is empty
186 static inline int list_empty(const struct list_head *head) function
218 if (!list_empty(head)) {
230 return !list_empty(head) && (head->next == head->prev);
262 if (list_empty(head))
295 if (!list_empty(list))
307 if (!list_empty(list))
321 if (!list_empty(list)) {
338 if (!list_empty(lis
[all...]
/external/chromium_org/third_party/libusb/src/libusb/
H A Dlibusbi.h102 #define list_empty(entry) ((entry)->next == (entry)) macro
/external/libusb/libusb/
H A Dlibusbi.h67 #define list_empty(entry) ((entry)->next == (entry)) macro
/external/cmockery/cmockery_0_1_2/src/
H A Dcmockery.c127 static int list_empty(const ListNode * const head);
377 while (!list_empty(head)) {
385 static int list_empty(const ListNode * const head) { function
411 if (list_empty(head)) {
526 if (list_empty(child_list)) {
554 if (!list_empty(child_list)) {
567 if (list_empty(child_list)) {
593 if (!list_empty(child_list)) {

Completed in 218 milliseconds