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

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/common/ctf/
H A Dctf_util.c35 * each list element contains an embedded ctf_list_t as the first member.
36 * An additional ctf_list_t is used to store the head (l_next) and tail
41 ctf_list_append(ctf_list_t *lp, void *new)
43 ctf_list_t *p = lp->l_prev; /* p = tail list element */
44 ctf_list_t *q = new; /* q = new list element */
57 * Prepend the specified existing element to the given ctf_list_t. The
58 * existing pointer should be pointing at a struct with embedded ctf_list_t.
61 ctf_list_prepend(ctf_list_t *lp, void *new)
63 ctf_list_t *p = new; /* p = new list element */
64 ctf_list_t *
[all...]
H A Dctf_impl.h120 } ctf_list_t; typedef in typeref:struct:ctf_list
131 ctf_list_t cd_list; /* linked list pointers */
138 ctf_list_t cd_nodes[CTF_PREC_MAX]; /* declaration node stacks */
150 ctf_list_t dmd_list; /* list forward/back pointers */
158 ctf_list_t dtd_list; /* list forward/back pointers */
164 ctf_list_t dtu_members; /* struct, union, or enum */
218 ctf_list_t ctf_dtdefs; /* list of dynamic type definitions */
299 #define ctf_list_prev(elem) ((void *)(((ctf_list_t *)(elem))->l_prev))
300 #define ctf_list_next(elem) ((void *)(((ctf_list_t *)(elem))->l_next))
302 extern void ctf_list_append(ctf_list_t *, voi
[all...]
H A Dctf_create.c399 bzero(&fp->ctf_dtdefs, sizeof (ctf_list_t));

Completed in 375 milliseconds