Searched refs:ctf_list_t (Results 1 - 4 of 4) sorted by relevance

/freebsd-9.3-release/cddl/contrib/opensolaris/common/ctf/
H A Dctf_util.c33 * each list element contains an embedded ctf_list_t as the first member.
34 * An additional ctf_list_t is used to store the head (l_next) and tail
39 ctf_list_append(ctf_list_t *lp, void *new)
41 ctf_list_t *p = lp->l_prev; /* p = tail list element */
42 ctf_list_t *q = new; /* q = new list element */
55 * Prepend the specified existing element to the given ctf_list_t. The
56 * existing pointer should be pointing at a struct with embedded ctf_list_t.
59 ctf_list_prepend(ctf_list_t *lp, void *new)
61 ctf_list_t *p = new; /* p = new list element */
62 ctf_list_t *
[all...]
H A Dctf_impl.h109 } ctf_list_t; typedef in typeref:struct:ctf_list
120 ctf_list_t cd_list; /* linked list pointers */
127 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
139 ctf_list_t dmd_list; /* list forward/back pointers */
147 ctf_list_t dtd_list; /* list forward/back pointers */
153 ctf_list_t dtu_members; /* struct, union, or enum */
207 ctf_list_t ctf_dtdefs; /* list of dynamic type definitions */
288 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
289 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
291 extern void ctf_list_append(ctf_list_t *, voi
[all...]
H A Dctf_create.c396 bzero(&fp->ctf_dtdefs, sizeof (ctf_list_t));
/freebsd-9.3-release/sys/cddl/dev/fbt/
H A Dfbt.c878 } ctf_list_t; typedef in typeref:struct:ctf_list
880 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
881 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
892 ctf_list_t cd_list; /* linked list pointers */
899 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
912 * each list element contains an embedded ctf_list_t as the first member.
913 * An additional ctf_list_t is used to store the head (l_next) and tail
918 ctf_list_append(ctf_list_t *lp, void *new)
920 ctf_list_t *p = lp->l_prev; /* p = tail list element */
921 ctf_list_t *
[all...]

Completed in 106 milliseconds