Lines Matching refs:dl_next
111 hp->dh_head.dl_prev = hp->dh_head.dl_next = &hp->dh_head; in evch_dl_init()
121 hp->dh_head.dl_prev = hp->dh_head.dl_next = NULL; in evch_dl_fini()
127 return (hp->dh_head.dl_next != NULL ? 1 : 0); in evch_dl_is_init()
139 x->dl_next = el; in evch_dl_add()
141 el->dl_next = y; in evch_dl_add()
153 p->dl_prev->dl_next = p->dl_next; in evch_dl_del()
154 p->dl_next->dl_prev = p->dl_prev; in evch_dl_del()
156 p->dl_next = NULL; in evch_dl_del()
168 for (p = hp->dh_head.dl_next; p != &hp->dh_head; p = p->dl_next) { in evch_dl_search()
198 return (hp->dh_head.dl_next); in evch_dl_next()
200 if ((ep = ep->dl_next) == (evch_dlelem_t *)hp) { in evch_dl_next()