Searched refs:ctf_list_t (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/common/ctf/ |
H A D | ctf_impl.h | 117 } ctf_list_t; typedef 128 ctf_list_t cd_list; /* linked list pointers */ 135 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */ 147 ctf_list_t dmd_list; /* list forward/back pointers */ 155 ctf_list_t dtd_list; /* list forward/back pointers */ 162 ctf_list_t dtu_members; /* struct, union, or enum */ 170 ctf_list_t dsd_list; /* list forward/back pointers */ 178 ctf_list_t dld_list; /* list forward/back pointers */ 230 ctf_list_t ctf_dtdefs; /* list of dynamic type definitions */ 235 ctf_list_t ctf_dsdefs; /* list of dynamic obj/func definitions */ [all …]
|
H A D | ctf_util.c | 41 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 D | ctf_create.c | 678 bzero(&fp->ctf_dtdefs, sizeof (ctf_list_t)); in ctf_update() 679 bzero(&fp->ctf_dsdefs, sizeof (ctf_list_t)); in ctf_update() 680 bzero(&fp->ctf_dldefs, sizeof (ctf_list_t)); in ctf_update()
|
/titanic_50/usr/src/lib/libctf/common/ |
H A D | ctf_dwarf.c | 227 ctf_list_t cdv_list; 234 ctf_list_t cdf_list; 242 ctf_list_t cdb_list; 257 ctf_list_t cu_vars; /* List of variables */ 258 ctf_list_t cu_funcs; /* List of functions */ 259 ctf_list_t cu_bitfields; /* Bit field members */ 2773 bzero(&cup->cu_vars, sizeof (ctf_list_t)); in ctf_dwarf_init_die() 2774 bzero(&cup->cu_funcs, sizeof (ctf_list_t)); in ctf_dwarf_init_die() 2775 bzero(&cup->cu_bitfields, sizeof (ctf_list_t)); in ctf_dwarf_init_die()
|