Searched refs:tcp_reuse_first (Results 1 – 3 of 3) sorted by relevance
102 unit_assert(outnet->tcp_reuse_first == NULL); in check_tree_and_list()106 unit_assert(outnet->tcp_reuse_first->item_on_lru_list); in check_tree_and_list()107 unit_assert(!outnet->tcp_reuse_first->lru_prev); in check_tree_and_list()108 reuse = outnet->tcp_reuse_first; in check_tree_and_list()147 reuse = outnet->tcp_reuse_first; in empty_tree()152 reuse = outnet->tcp_reuse_first; in empty_tree()166 reuse = outnet->tcp_reuse_first; in check_removal()188 unit_assert(outnet->tcp_reuse_first == NULL); in check_snip()213 for(reuse = outnet.tcp_reuse_first; reuse->lru_next; reuse = reuse->lru_next); in tcp_reuse_tree_list_test()
496 if(outnet->tcp_reuse_first) {497 pend_tcp->reuse.lru_next = outnet->tcp_reuse_first;499 outnet->tcp_reuse_first->lru_prev = &pend_tcp->reuse;500 log_assert(outnet->tcp_reuse_first->lru_prev !=501 outnet->tcp_reuse_first);506 outnet->tcp_reuse_first = &pend_tcp->reuse;508 log_assert((!outnet->tcp_reuse_first && !outnet->tcp_reuse_last) ||509 (outnet->tcp_reuse_first && outnet->tcp_reuse_last));510 log_assert(outnet->tcp_reuse_first != outnet->tcp_reuse_first->lru_next &&511 outnet->tcp_reuse_first != outnet->tcp_reuse_first->lru_prev);[all …]
186 struct reuse_tcp* tcp_reuse_first, *tcp_reuse_last; member