Lines Matching refs:head

642 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr,
647 if (curr == *head)
648 *head = curr->next;
659 static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr,
662 if (curr == *head)
670 (*head)->prev = curr;
671 curr->next = *head;
673 *head = curr;
752 CIPHER_ORDER *head)
765 ciph_curr = head;
815 CIPHER_ORDER *head, *tail, *curr, *next, *last;
830 head = *head_p;
835 last = head;
837 next = head;
898 ll_append_tail(&head, curr, &tail);
906 ll_append_tail(&head, curr, &tail);
916 ll_append_head(&head, curr, &tail);
921 ll_append_head(&head, curr, &tail);
924 if (head == curr)
925 head = curr->next;
940 *head_p = head;
1452 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr;
1490 disabled_mac, co_list, &head, &tail);
1502 -1, &head, &tail);
1503 ssl_cipher_apply_rule(0, SSL_kECDHE, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head,
1505 ssl_cipher_apply_rule(0, SSL_kECDHE, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head,
1510 &head, &tail);
1512 &head, &tail);
1520 -1, &head, &tail);
1523 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head, &tail);
1526 ssl_cipher_apply_rule(0, 0, 0, 0, SSL_MD5, 0, 0, CIPHER_ORD, -1, &head,
1534 ssl_cipher_apply_rule(0, 0, SSL_aNULL, 0, 0, 0, 0, CIPHER_ORD, -1, &head,
1537 ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head,
1539 ssl_cipher_apply_rule(0, SSL_kPSK, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head,
1543 ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head,
1550 if (!ssl_cipher_strength_sort(&head, &tail)) {
1559 &head, &tail);
1575 &head, &tail);
1577 CIPHER_BUMP, -1, &head, &tail);
1579 CIPHER_BUMP, -1, &head, &tail);
1582 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head, &tail);
1602 disabled_mac, head);
1612 &head, &tail, ca_list, c);
1619 ok = ssl_cipher_process_rulestr(rule_p, &head, &tail, ca_list, c);
1665 for (curr = head; curr != NULL; curr = curr->next) {