Lines Matching defs:head
664 static void ll_append_tail(CIPHER_ORDER **head, CIPHER_ORDER *curr,
668 if (curr == *head)
669 *head=curr->next;
680 static void ll_append_head(CIPHER_ORDER **head, CIPHER_ORDER *curr,
683 if (curr == *head) return;
690 (*head)->prev=curr;
691 curr->next= *head;
693 *head=curr;
856 CIPHER_ORDER *head)
870 ciph_curr = head;
928 CIPHER_ORDER *head, *tail, *curr, *curr2, *last;
940 head = *head_p;
946 last = head;
950 curr = head;
1004 ll_append_tail(&head, curr, &tail);
1014 ll_append_tail(&head, curr, &tail);
1025 ll_append_head(&head, curr, &tail);
1032 if (head == curr)
1033 head = curr->next;
1048 *head_p = head;
1362 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr;
1395 co_list, &head, &tail);
1401 ssl_cipher_apply_rule(0, SSL_kEECDH, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head, &tail);
1402 ssl_cipher_apply_rule(0, SSL_kEECDH, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head, &tail);
1405 ssl_cipher_apply_rule(0, 0, 0, SSL_AES, 0, 0, 0, CIPHER_ADD, -1, &head, &tail);
1408 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_ADD, -1, &head, &tail);
1411 ssl_cipher_apply_rule(0, 0, 0, 0, SSL_MD5, 0, 0, CIPHER_ORD, -1, &head, &tail);
1416 ssl_cipher_apply_rule(0, 0, SSL_aNULL, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1419 ssl_cipher_apply_rule(0, 0, SSL_aECDH, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1420 /* ssl_cipher_apply_rule(0, 0, SSL_aDH, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail); */
1421 ssl_cipher_apply_rule(0, SSL_kRSA, 0, 0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1422 ssl_cipher_apply_rule(0, SSL_kPSK, 0,0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1423 ssl_cipher_apply_rule(0, SSL_kKRB5, 0,0, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1426 ssl_cipher_apply_rule(0, 0, 0, SSL_RC4, 0, 0, 0, CIPHER_ORD, -1, &head, &tail);
1430 if (!ssl_cipher_strength_sort(&head, &tail))
1437 ssl_cipher_apply_rule(0, 0, 0, 0, 0, 0, 0, CIPHER_DEL, -1, &head, &tail);
1459 disabled_mac, disabled_ssl, head);
1470 &head, &tail, ca_list);
1477 ok = ssl_cipher_process_rulestr(rule_p, &head, &tail, ca_list);
1501 for (curr = head; curr != NULL; curr = curr->next)