Lines Matching defs:dump
107 #define ynl_dump_foreach(dump, iter) \
108 for (typeof(dump->obj) *iter = &dump->obj; \
113 * ynl_dump_empty() - does the dump have no entries
114 * @dump: pointer to the dump list, as returned by a dump call
116 * Check if the dump is empty, i.e. contains no objects.
119 static inline bool ynl_dump_empty(void *dump)
121 return dump == (void *)YNL_LIST_END;