Lines Matching refs:el
50 vntsd_que_t *el; in alloc_que_el() local
53 el = (vntsd_que_t *)malloc(sizeof (vntsd_que_t)); in alloc_que_el()
54 if (el == NULL) { in alloc_que_el()
59 el->nextp = NULL; in alloc_que_el()
60 el->prevp = NULL; in alloc_que_el()
61 el->handle = handle; in alloc_que_el()
63 return (el); in alloc_que_el()
71 vntsd_que_t *el; in vntsd_que_append() local
77 el = alloc_que_el(handle); in vntsd_que_append()
79 if (el == NULL) { in vntsd_que_append()
87 *que_hd = el; in vntsd_que_append()
92 p->nextp = el; in vntsd_que_append()
95 el->prevp = p; in vntsd_que_append()
104 vntsd_que_t *q, *el; in vntsd_que_insert_after() local
123 el = alloc_que_el(next); in vntsd_que_insert_after()
125 if (el == NULL) { in vntsd_que_insert_after()
129 el->nextp = q->nextp; in vntsd_que_insert_after()
130 q->nextp = el; in vntsd_que_insert_after()
131 el->prevp = q; in vntsd_que_insert_after()