Lines Matching refs:slab_info
19 struct slab_info { struct
21 struct slab_info *next; argument
46 typedef int (*sort_t)(const struct slab_info *, const struct slab_info *); argument
60 static struct slab_info * get_slabinfo(struct slab_stat *stats) in get_slabinfo()
62 struct slab_info *head = NULL, *p = NULL, *prev = NULL; in get_slabinfo()
97 p = malloc(sizeof (struct slab_info)); in get_slabinfo()
160 static void free_slablist(struct slab_info *list) in free_slablist()
163 struct slab_info *temp = list->next; in free_slablist()
169 static struct slab_info *merge_objs(struct slab_info *a, struct slab_info *b) in merge_objs()
171 struct slab_info list; in merge_objs()
172 struct slab_info *p = &list; in merge_objs()
193 static struct slab_info *slabsort(struct slab_info *list) in slabsort()
195 struct slab_info *a, *b; in slabsort()
224 static int sort_name(const struct slab_info *a, const struct slab_info *b) in sort_name()
231 (const struct slab_info *a, const struct slab_info *b) { \
272 struct slab_info *list, *p; in main()