Home | History | Annotate | Download | only in ssl

Lines Matching refs:tail

668                            CIPHER_ORDER **tail) {
669 if (curr == *tail) {
681 (*tail)->next = curr;
682 curr->prev = *tail;
684 *tail = curr;
688 CIPHER_ORDER **tail) {
692 if (curr == *tail) {
693 *tail = curr->prev;
803 // head and tail of the list to |*head_p| and |*tail_p|, respectively.
815 CIPHER_ORDER *head, *tail, *curr, *next, *last;
831 tail = *tail_p;
834 next = tail;
838 last = tail;
881 ll_append_tail(&head, curr, &tail);
891 ll_append_tail(&head, curr, &tail);
900 ll_append_head(&head, curr, &tail);
912 if (tail == curr) {
913 tail = curr->prev;
928 *tail_p = tail;
1164 CIPHER_ORDER *head = nullptr, *tail = nullptr;
1165 if (!ssl_cipher_collect_ciphers(&co_list, &head, &tail)) {
1175 false, &head, &tail);
1177 &head, &tail);
1179 &tail);
1187 false, &head, &tail);
1189 false, &head, &tail);
1191 -1, false, &head, &tail);
1194 -1, false, &head, &tail);
1196 false, &head, &tail);
1198 false, &head, &tail);
1204 &head, &tail);
1206 &head, &tail);
1208 &head, &tail);
1212 &tail);
1216 -1, false, &head, &tail);
1220 &tail);
1226 if (!ssl_cipher_process_rulestr(SSL_DEFAULT_CIPHER_LIST, &head, &tail,
1237 !ssl_cipher_process_rulestr(rule_p, &head, &tail, strict)) {