Lines Matching refs:atmp
650 ASN1_TYPE *atmp = NULL; in asn1_str2type() local
659 if (!(atmp = ASN1_TYPE_new())) in asn1_str2type()
688 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) in asn1_str2type()
702 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str))) in asn1_str2type()
715 if (!(atmp->value.object = OBJ_txt2obj(str, 0))) in asn1_str2type()
729 if (!(atmp->value.asn1_string = ASN1_STRING_new())) in asn1_str2type()
734 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) in asn1_str2type()
739 atmp->value.asn1_string->type = utype; in asn1_str2type()
740 if (!ASN1_TIME_check(atmp->value.asn1_string)) in asn1_str2type()
769 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type()
783 if (!(atmp->value.asn1_string = ASN1_STRING_new())) in asn1_str2type()
798 atmp->value.asn1_string->data = rdata; in asn1_str2type()
799 atmp->value.asn1_string->length = rdlen; in asn1_str2type()
800 atmp->value.asn1_string->type = utype; in asn1_str2type()
804 ASN1_STRING_set(atmp->value.asn1_string, str, -1); in asn1_str2type()
807 if (!CONF_parse_list(str, ',', 1, bitstr_cb, atmp->value.bit_string)) in asn1_str2type()
823 atmp->value.asn1_string->flags in asn1_str2type()
825 atmp->value.asn1_string->flags in asn1_str2type()
839 atmp->type = utype; in asn1_str2type()
840 return atmp; in asn1_str2type()
847 ASN1_TYPE_free(atmp); in asn1_str2type()