Lines Matching refs:el
51 vntsd_que_t *el; in alloc_que_el() local
54 el = (vntsd_que_t *)malloc(sizeof (vntsd_que_t)); in alloc_que_el()
55 if (el == NULL) { in alloc_que_el()
60 el->nextp = NULL; in alloc_que_el()
61 el->prevp = NULL; in alloc_que_el()
62 el->handle = handle; in alloc_que_el()
64 return (el); in alloc_que_el()
72 vntsd_que_t *el; in vntsd_que_append() local
78 el = alloc_que_el(handle); in vntsd_que_append()
80 if (el == NULL) { in vntsd_que_append()
88 *que_hd = el; in vntsd_que_append()
93 p->nextp = el; in vntsd_que_append()
96 el->prevp = p; in vntsd_que_append()
105 vntsd_que_t *q, *el; in vntsd_que_insert_after() local
124 el = alloc_que_el(next); in vntsd_que_insert_after()
126 if (el == NULL) { in vntsd_que_insert_after()
130 el->nextp = q->nextp; in vntsd_que_insert_after()
131 q->nextp = el; in vntsd_que_insert_after()
132 el->prevp = q; in vntsd_que_insert_after()