Searched defs:list_t (Results 1 - 4 of 4) sorted by relevance
/illumos-gate/usr/src/tools/ctf/common/ |
H A D | list.h | 40 typedef struct list list_t; typedef in typeref:struct:list 42 void list_add(list_t **, void *); 43 void slist_add(list_t **, void *, int (*)(void *, void *)); 44 void *list_remove(list_t **, void *, int (*)(void *, void *, void *), void *); 45 void list_free(list_t *, void (*)(void *, void *), void *); 46 void *list_find(list_t *, void *, int (*)(void *, void *)); 47 void *list_first(list_t *); 48 int list_iter(list_t *, int (*)(void *, void *), void *); 49 int list_count(list_t *); 50 int list_empty(list_t *); [all...] |
/illumos-gate/usr/src/uts/common/sys/ |
H A D | list.h | 38 typedef struct list list_t; typedef in typeref:struct:list 40 void list_create(list_t *, size_t, size_t); 41 void list_destroy(list_t *); 43 void list_insert_after(list_t *, void *, void *); 44 void list_insert_before(list_t *, void *, void *); 45 void list_insert_head(list_t *, void *); 46 void list_insert_tail(list_t *, void *); 47 void list_remove(list_t *, void *); 48 void *list_remove_head(list_t *); 49 void *list_remove_tail(list_t *); [all...] |
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | getauditflags.c | 60 typedef struct list list_t; typedef in typeref:struct:list 91 list_t lists[3];
|
/illumos-gate/usr/src/cmd/prstat/ |
H A D | prstat.h | 158 } list_t; typedef in typeref:struct:list
|
Completed in 609 milliseconds