Home
last modified time | relevance | path

Searched refs:ctf_list_t (Results 1 – 3 of 3) sorted by relevance

/titanic_41/usr/src/common/ctf/
H A Dctf_util.c39 ctf_list_append(ctf_list_t *lp, void *new) in ctf_list_append()
41 ctf_list_t *p = lp->l_prev; /* p = tail list element */ in ctf_list_append()
42 ctf_list_t *q = new; /* q = new list element */ in ctf_list_append()
59 ctf_list_prepend(ctf_list_t *lp, void *new) in ctf_list_prepend()
61 ctf_list_t *p = new; /* p = new list element */ in ctf_list_prepend()
62 ctf_list_t *q = lp->l_next; /* q = head list element */ in ctf_list_prepend()
79 ctf_list_delete(ctf_list_t *lp, void *existing) in ctf_list_delete()
81 ctf_list_t *p = existing; in ctf_list_delete()
H A Dctf_impl.h110 } ctf_list_t; typedef
121 ctf_list_t cd_list; /* linked list pointers */
128 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
140 ctf_list_t dmd_list; /* list forward/back pointers */
148 ctf_list_t dtd_list; /* list forward/back pointers */
155 ctf_list_t dtu_members; /* struct, union, or enum */
209 ctf_list_t ctf_dtdefs; /* list of dynamic type definitions */
292 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
293 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
295 extern void ctf_list_append(ctf_list_t *, void *);
[all …]
H A Dctf_create.c447 bzero(&fp->ctf_dtdefs, sizeof (ctf_list_t)); in ctf_update()