HomeSort by relevance Sort by last modified time
    Searched defs:list_empty (Results 1 - 8 of 8) sorted by null

  /system/core/include/cutils/
list.h 80 #define list_empty(list) ((list) == (list)->next) macro
  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 79 static __inline__ int list_empty(struct list_head *head) function
  /external/e2fsprogs/lib/blkid/
list.h 94 * 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/f2fs-tools/include/
list.h 66 static inline int list_empty(const struct list_head *head) function
  /external/blktrace/btt/
list.h 107 * 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/iptables/libiptc/
linux_list.h 183 * 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/libusb/libusb/
libusbi.h 67 #define list_empty(entry) ((entry)->next == (entry)) macro
  /external/cmockery/cmockery_0_1_2/src/
cmockery.c 127 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)) {
    [all...]

Completed in 267 milliseconds