Lines Matching refs:dl_next
107 hp->dh_head.dl_prev = hp->dh_head.dl_next = &hp->dh_head; in evch_dl_init()
117 hp->dh_head.dl_prev = hp->dh_head.dl_next = NULL; in evch_dl_fini()
123 return (hp->dh_head.dl_next != NULL ? 1 : 0); in evch_dl_is_init()
135 x->dl_next = el; in evch_dl_add()
137 el->dl_next = y; in evch_dl_add()
149 p->dl_prev->dl_next = p->dl_next; in evch_dl_del()
150 p->dl_next->dl_prev = p->dl_prev; in evch_dl_del()
152 p->dl_next = NULL; in evch_dl_del()
164 for (p = hp->dh_head.dl_next; p != &hp->dh_head; p = p->dl_next) { in evch_dl_search()
194 return (hp->dh_head.dl_next); in evch_dl_next()
196 if ((ep = ep->dl_next) == (evch_dlelem_t *)hp) { in evch_dl_next()