Lines Matching refs:next

153     struct cipher_order_st *next, *prev;  member
615 *head = curr->next; in ll_append_tail()
617 curr->prev->next = curr->next; in ll_append_tail()
618 if (curr->next != NULL) in ll_append_tail()
619 curr->next->prev = curr->prev; in ll_append_tail()
620 (*tail)->next = curr; in ll_append_tail()
622 curr->next = NULL; in ll_append_tail()
633 if (curr->next != NULL) in ll_append_head()
634 curr->next->prev = curr->prev; in ll_append_head()
636 curr->prev->next = curr->next; in ll_append_head()
638 curr->next = *head; in ll_append_head()
683 co_list[co_list_num].next = NULL; in ssl_cipher_collect_ciphers()
696 co_list[0].next = &co_list[1]; in ssl_cipher_collect_ciphers()
700 co_list[i].next = &co_list[i + 1]; in ssl_cipher_collect_ciphers()
706 co_list[co_list_num - 1].next = NULL; in ssl_cipher_collect_ciphers()
737 ciph_curr = ciph_curr->next; in ssl_cipher_collect_aliases()
782 CIPHER_ORDER *head, *tail, *curr, *next, *last; in ssl_cipher_apply_rule() local
802 next = tail; in ssl_cipher_apply_rule()
805 next = head; in ssl_cipher_apply_rule()
814 curr = next; in ssl_cipher_apply_rule()
819 next = reverse ? curr->prev : curr->next; in ssl_cipher_apply_rule()
897 head = curr->next; in ssl_cipher_apply_rule()
899 curr->prev->next = curr->next; in ssl_cipher_apply_rule()
903 if (curr->next != NULL) in ssl_cipher_apply_rule()
904 curr->next->prev = curr->prev; in ssl_cipher_apply_rule()
906 curr->prev->next = curr->next; in ssl_cipher_apply_rule()
907 curr->next = NULL; in ssl_cipher_apply_rule()
935 curr = curr->next; in ssl_cipher_strength_sort()
949 curr = curr->next; in ssl_cipher_strength_sort()
1646 for (curr = head; curr != NULL; curr = curr->next) { in STACK_OF()