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

  /external/libnl/python/netlink/
utils.h 8 static inline int list_empty(const struct list_head *head) function
  /external/e2fsprogs/lib/ext2fs/
kernel-list.h 79 static __inline__ int list_empty(struct list_head *head) function
  /external/u-boot/scripts/kconfig/
list.h 68 * list_empty - tests whether a list is empty
71 static inline int list_empty(const struct list_head *head) function
123 * Note: list_empty() on entry does not return true after this, the entry is
  /external/e2fsprogs/lib/blkid/
list.h 102 * list_empty() on @entry does not return true after this, @entry is
121 * list_empty - tests whether a list is empty
124 _INLINE_ int list_empty(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/ltp/testcases/realtime/include/
list.h 133 * Note: list_empty on entry does not return true after this, the entry is
177 * list_empty - tests whether a list is empty
180 static inline int list_empty(const struct list_head *head) function
224 if (!list_empty(list))
238 if (!list_empty(list)) {
  /external/mesa3d/src/util/
list.h 75 static inline bool list_empty(struct list_head *list);
79 if (list_empty(from)) {
104 static inline bool list_empty(struct list_head *list) function
128 if (list_empty(src))
139 if (list_empty(src))
  /external/blktrace/iowatcher/
list.h 132 * Note: list_empty on entry does not return true after this, the entry is
212 * list_empty - tests whether a list is empty
215 static inline int list_empty(const struct list_head *head) function
260 if (!list_empty(list))
274 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/libnetfilter_conntrack/include/internal/
linux_list.h 188 * Note: list_empty on entry does not return true after this, the entry is
202 * Note: list_empty on entry does not return true after this,
262 * list_empty - tests whether a list is empty
265 static inline int list_empty(const struct list_head *head) function
309 if (!list_empty(list))
323 if (!list_empty(list)) {
  /external/libnfnetlink/include/
linux_list.h 187 * Note: list_empty on entry does not return true after this, the entry is
201 * Note: list_empty on entry does not return true after this,
261 * list_empty - tests whether a list is empty
264 static inline int list_empty(const struct list_head *head) function
308 if (!list_empty(list))
322 if (!list_empty(list)) {
  /external/u-boot/include/linux/
list.h 95 * Note: list_empty() on entry does not return true after this, the entry is
173 * list_empty - tests whether a list is empty
176 static inline int list_empty(const struct list_head *head) function
206 return !list_empty(head) && (head->next == head->prev);
238 if (list_empty(head))
271 if (!list_empty(list))
283 if (!list_empty(list))
297 if (!list_empty(list)) {
314 if (!list_empty(list)) {
  /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...]
  /external/libusb/libusb/
libusbi.h 109 #define list_empty(entry) ((entry)->next == (entry)) macro
357 || !list_empty(&(ctx)->hotplug_msgs) || !list_empty(&(ctx)->completed_transfers))
    [all...]

Completed in 1398 milliseconds