Home | History | Annotate | Download | only in ssl

Lines Matching refs:co_list

782                 CIPHER_ORDER *co_list,
811 co_list[co_list_num].cipher = c;
812 co_list[co_list_num].next = NULL;
813 co_list[co_list_num].prev = NULL;
814 co_list[co_list_num].active = 0;
830 co_list[0].prev = NULL;
834 co_list[0].next = &co_list[1];
838 co_list[i].prev = &co_list[i - 1];
839 co_list[i].next = &co_list[i + 1];
842 co_list[co_list_num - 1].prev = &co_list[co_list_num - 2];
845 co_list[co_list_num - 1].next = NULL;
847 *head_p = &co_list[0];
848 *tail_p = &co_list[co_list_num - 1];
1367 CIPHER_ORDER *co_list = NULL, *head = NULL, *tail = NULL, *curr;
1391 co_list = (CIPHER_ORDER *)OPENSSL_malloc(sizeof(CIPHER_ORDER) * num_of_ciphers);
1392 if (co_list == NULL)
1400 co_list, &head, &tail);
1437 OPENSSL_free(co_list);
1458 OPENSSL_free(co_list);
1488 OPENSSL_free(co_list);
1498 OPENSSL_free(co_list);
1520 OPENSSL_free(co_list); /* Not needed any longer */