Searched refs:dl_next (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_list.c35 * An additional dt_list_t is used to store the head (dl_next) and tail
56 q->dl_next = NULL;
59 assert(p->dl_next == NULL);
60 p->dl_next = q;
62 assert(dlp->dl_next == NULL);
63 dlp->dl_next = q;
71 dt_list_t *q = dlp->dl_next; /* q = head list element */
73 dlp->dl_next = p;
75 p->dl_next = q;
92 if (p == NULL || p->dl_next
[all...]
H A Ddt_list.h42 struct dt_list *dl_next; member in struct:dt_list
46 #define dt_list_next(elem) ((void *)(((dt_list_t *)(elem))->dl_next))

Completed in 42 milliseconds