Lines Matching refs:atmp
578 ASN1_TYPE *atmp = NULL; in asn1_str2type() local
584 if ((atmp = ASN1_TYPE_new()) == NULL) { in asn1_str2type()
609 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
621 if ((atmp->value.integer in asn1_str2type()
633 if ((atmp->value.object = OBJ_txt2obj(str, 0)) == NULL) { in asn1_str2type()
645 if ((atmp->value.asn1_string = ASN1_STRING_new()) == NULL) { in asn1_str2type()
649 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type()
653 atmp->value.asn1_string->type = utype; in asn1_str2type()
654 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type()
679 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type()
689 if ((atmp->value.asn1_string = ASN1_STRING_new()) == NULL) { in asn1_str2type()
699 atmp->value.asn1_string->data = rdata; in asn1_str2type()
700 atmp->value.asn1_string->length = rdlen; in asn1_str2type()
701 atmp->value.asn1_string->type = utype; in asn1_str2type()
703 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type()
710 (str, ',', 1, bitstr_cb, atmp->value.bit_string)) { in asn1_str2type()
722 ossl_asn1_string_set_bits_left(atmp->value.asn1_string, 0); in asn1_str2type()
731 atmp->type = utype; in asn1_str2type()
732 return atmp; in asn1_str2type()
738 ASN1_TYPE_free(atmp); in asn1_str2type()