Lines Matching refs:xn
613 X509_NAME *xn = NULL; in STACK_OF() local
643 if ((xn = X509_get_subject_name(x)) == NULL) in STACK_OF()
646 xn = X509_NAME_dup(xn); in STACK_OF()
647 if (xn == NULL) in STACK_OF()
649 if (lh_X509_NAME_retrieve(name_hash, xn) != NULL) { in STACK_OF()
651 X509_NAME_free(xn); in STACK_OF()
652 xn = NULL; in STACK_OF()
654 lh_X509_NAME_insert(name_hash, xn); in STACK_OF()
655 if (!sk_X509_NAME_push(ret, xn)) in STACK_OF()
662 X509_NAME_free(xn); in STACK_OF()
686 X509_NAME *xn = NULL; in SSL_add_file_cert_subjects_to_stack() local
705 if ((xn = X509_get_subject_name(x)) == NULL) in SSL_add_file_cert_subjects_to_stack()
707 xn = X509_NAME_dup(xn); in SSL_add_file_cert_subjects_to_stack()
708 if (xn == NULL) in SSL_add_file_cert_subjects_to_stack()
710 if (sk_X509_NAME_find(stack, xn) >= 0) { in SSL_add_file_cert_subjects_to_stack()
712 X509_NAME_free(xn); in SSL_add_file_cert_subjects_to_stack()
713 } else if (!sk_X509_NAME_push(stack, xn)) { in SSL_add_file_cert_subjects_to_stack()
714 X509_NAME_free(xn); in SSL_add_file_cert_subjects_to_stack()
781 X509_NAME *xn = NULL; in add_uris_recursive() local
803 || (xn = X509_get_subject_name(x)) == NULL in add_uris_recursive()
804 || (xn = X509_NAME_dup(xn)) == NULL) in add_uris_recursive()
806 if (sk_X509_NAME_find(stack, xn) >= 0) { in add_uris_recursive()
808 X509_NAME_free(xn); in add_uris_recursive()
809 } else if (!sk_X509_NAME_push(stack, xn)) { in add_uris_recursive()
810 X509_NAME_free(xn); in add_uris_recursive()