Home
last modified time | relevance | path

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

/illumos-gate/usr/src/common/ctf/
H A Dctf_impl.h118 } ctf_list_t; typedef
129 ctf_list_t cd_list; /* linked list pointers */
136 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
148 ctf_list_t dmd_list; /* list forward/back pointers */
156 ctf_list_t dtd_list; /* list forward/back pointers */
163 ctf_list_t dtu_members; /* struct, union, or enum */
171 ctf_list_t dsd_list; /* list forward/back pointers */
179 ctf_list_t dld_list; /* list forward/back pointers */
231 ctf_list_t ctf_dtdefs; /* list of dynamic type definitions */
236 ctf_list_t ctf_dsdefs; /* list of dynamic obj/func definitions */
[all …]
H A Dctf_util.c41 ctf_list_append(ctf_list_t *lp, void *new) in ctf_list_append()
43 ctf_list_t *p = lp->l_prev; /* p = tail list element */ in ctf_list_append()
44 ctf_list_t *q = new; /* q = new list element */ in ctf_list_append()
61 ctf_list_prepend(ctf_list_t *lp, void *new) in ctf_list_prepend()
63 ctf_list_t *p = new; /* p = new list element */ in ctf_list_prepend()
64 ctf_list_t *q = lp->l_next; /* q = head list element */ in ctf_list_prepend()
77 ctf_list_insert_before(ctf_list_t *head, void *item, void *nitem) in ctf_list_insert_before()
79 ctf_list_t *lp = item; in ctf_list_insert_before()
80 ctf_list_t *new = nitem; in ctf_list_insert_before()
81 ctf_list_t *prev = lp->l_prev; in ctf_list_insert_before()
[all …]
H A Dctf_create.c689 bzero(&fp->ctf_dtdefs, sizeof (ctf_list_t)); in ctf_update()
690 bzero(&fp->ctf_dsdefs, sizeof (ctf_list_t)); in ctf_update()
691 bzero(&fp->ctf_dldefs, sizeof (ctf_list_t)); in ctf_update()
/illumos-gate/usr/src/lib/libctf/common/
H A Dctf_dwarf.c233 ctf_list_t cdv_list;
240 ctf_list_t cdf_list;
248 ctf_list_t cdb_list;
264 ctf_list_t cu_vars; /* List of variables */
265 ctf_list_t cu_funcs; /* List of functions */
266 ctf_list_t cu_bitfields; /* Bit field members */