Home | History | Annotate | Download | only in ssl

Lines Matching refs:head

775 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr,
780 if (curr == *head) {
781 *head = curr->next;
795 static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr,
797 if (curr == *head) {
809 (*head)->prev = curr;
810 curr->next = *head;
812 *head = curr;
860 * head and tail of the list to |*head_p| and |*tail_p|, respectively.
872 CIPHER_ORDER *head, *tail, *curr, *next, *last;
887 head = *head_p;
892 last = head;
894 next = head;
936 ll_append_tail(&head, curr, &tail);
946 ll_append_tail(&head, curr, &tail);
955 ll_append_head(&head, curr, &tail);
961 if (head == curr) {
962 head = curr->next;
982 *head_p = head;
1217 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr;
1236 ssl_cipher_collect_ciphers(ssl_method, co_list, &head, &tail);
1244 0, &head, &tail);
1246 &head, &tail);
1247 ssl_cipher_apply_rule(0, ~0u, ~0u, ~0u, ~0u, 0, CIPHER_DEL, -1, 0, &head,
1256 &head, &tail);
1258 &head, &tail);
1260 -1, 0, &head, &tail);
1263 -1, 0, &head, &tail);
1265 &head, &tail);
1267 &head, &tail);
1273 &head, &tail);
1275 &head, &tail);
1276 ssl_cipher_apply_rule(0, ~0u, ~0u, SSL_3DES, ~0u, 0, CIPHER_ADD, -1, 0, &head,
1280 ssl_cipher_apply_rule(0, ~0u, ~0u, ~0u, ~0u, 0, CIPHER_ADD, -1, 0, &head,
1285 CIPHER_ORD, -1, 0, &head, &tail);
1288 ssl_cipher_apply_rule(0, ~0u, ~0u, ~0u, ~0u, 0, CIPHER_DEL, -1, 0, &head,
1295 if (!ssl_cipher_process_rulestr(ssl_method, SSL_DEFAULT_CIPHER_LIST, &head,
1306 !ssl_cipher_process_rulestr(ssl_method, rule_p, &head, &tail, strict)) {
1324 for (curr = head; curr != NULL; curr = curr->next) {