Lines Matching refs:prev
17 QUIC_CFQ_ITEM_EX *prev, *next; member
104 l->tail = n->prev; in list_remove()
105 if (n->prev != NULL) in list_remove()
106 n->prev->next = n->next; in list_remove()
108 n->next->prev = n->prev; in list_remove()
109 n->prev = n->next = NULL; in list_remove()
115 n->prev = NULL; in list_insert_head()
118 n->next->prev = n; in list_insert_head()
125 n->prev = l->tail; in list_insert_tail()
128 if (n->prev != NULL) in list_insert_tail()
129 n->prev->next = n; in list_insert_tail()
138 n->prev = ref; in list_insert_after()
141 ref->next->prev = n; in list_insert_after()
155 n->prev = n->next = NULL; in list_insert_sorted()