Lines Matching refs:next
162 struct cipher_order_st *next, *prev; member
644 *head = curr->next; in ll_append_tail()
646 curr->prev->next = curr->next; in ll_append_tail()
647 if (curr->next != NULL) in ll_append_tail()
648 curr->next->prev = curr->prev; in ll_append_tail()
649 (*tail)->next = curr; in ll_append_tail()
651 curr->next = NULL; in ll_append_tail()
662 if (curr->next != NULL) in ll_append_head()
663 curr->next->prev = curr->prev; in ll_append_head()
665 curr->prev->next = curr->next; in ll_append_head()
667 curr->next = *head; in ll_append_head()
712 co_list[co_list_num].next = NULL; in ssl_cipher_collect_ciphers()
725 co_list[0].next = &co_list[1]; in ssl_cipher_collect_ciphers()
729 co_list[i].next = &co_list[i + 1]; in ssl_cipher_collect_ciphers()
735 co_list[co_list_num - 1].next = NULL; in ssl_cipher_collect_ciphers()
766 ciph_curr = ciph_curr->next; in ssl_cipher_collect_aliases()
811 CIPHER_ORDER *head, *tail, *curr, *next, *last; in ssl_cipher_apply_rule() local
830 next = tail; in ssl_cipher_apply_rule()
833 next = head; in ssl_cipher_apply_rule()
842 curr = next; in ssl_cipher_apply_rule()
847 next = reverse ? curr->prev : curr->next; in ssl_cipher_apply_rule()
921 head = curr->next; in ssl_cipher_apply_rule()
923 curr->prev->next = curr->next; in ssl_cipher_apply_rule()
927 if (curr->next != NULL) in ssl_cipher_apply_rule()
928 curr->next->prev = curr->prev; in ssl_cipher_apply_rule()
930 curr->prev->next = curr->next; in ssl_cipher_apply_rule()
931 curr->next = NULL; in ssl_cipher_apply_rule()
959 curr = curr->next; in ssl_cipher_strength_sort()
975 curr = curr->next; in ssl_cipher_strength_sort()
1659 for (curr = head; curr != NULL; curr = curr->next) { in STACK_OF()