Lines Matching refs:next
26 assert(n->prev == NULL && n->next == NULL in list_insert_tail()
27 && l->prev != NULL && l->next != NULL); in list_insert_tail()
30 n->prev->next = n; in list_insert_tail()
32 n->next = l; in list_insert_tail()
38 assert(n->prev != NULL && n->next != NULL in list_remove()
39 && n->prev != n && n->next != n); in list_remove()
41 n->prev->next = n->next; in list_remove()
42 n->next->prev = n->prev; in list_remove()
43 n->next = n->prev = NULL; in list_remove()
49 assert(n->prev != NULL && n->next != NULL in list_next()
50 && (n == l || (n->prev != n && n->next != n)) in list_next()
51 && l->prev != NULL && l->next != NULL); in list_next()
53 n = n->next; in list_next()
56 n = n->next; in list_next()
98 qsm->active_list.prev = qsm->active_list.next = &qsm->active_list; in ossl_quic_stream_map_init()
99 qsm->accept_list.prev = qsm->accept_list.next = &qsm->accept_list; in ossl_quic_stream_map_init()
100 qsm->ready_for_gc_list.prev = qsm->ready_for_gc_list.next in ossl_quic_stream_map_init()
180 if (stream->active_node.next != NULL) in ossl_quic_stream_map_release()
182 if (stream->accept_node.next != NULL) in ossl_quic_stream_map_release()
184 if (stream->ready_for_gc_node.next != NULL) in ossl_quic_stream_map_release()