Lines Matching refs:atmp
649 ASN1_TYPE *atmp = NULL; in asn1_str2type() local
658 if (!(atmp = ASN1_TYPE_new())) { in asn1_str2type()
683 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
695 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str))) { in asn1_str2type()
706 if (!(atmp->value.object = OBJ_txt2obj(str, 0))) { in asn1_str2type()
718 if (!(atmp->value.asn1_string = ASN1_STRING_new())) { in asn1_str2type()
722 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type()
726 atmp->value.asn1_string->type = utype; in asn1_str2type()
727 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type()
753 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type()
765 if (!(atmp->value.asn1_string = ASN1_STRING_new())) { in asn1_str2type()
777 atmp->value.asn1_string->data = rdata; in asn1_str2type()
778 atmp->value.asn1_string->length = rdlen; in asn1_str2type()
779 atmp->value.asn1_string->type = utype; in asn1_str2type()
782 ASN1_STRING_set(atmp->value.asn1_string, str, -1); in asn1_str2type()
786 (str, ',', 1, bitstr_cb, atmp->value.bit_string)) { in asn1_str2type()
798 atmp->value.asn1_string->flags in asn1_str2type()
800 atmp->value.asn1_string->flags |= ASN1_STRING_FLAG_BITS_LEFT; in asn1_str2type()
811 atmp->type = utype; in asn1_str2type()
812 return atmp; in asn1_str2type()
818 ASN1_TYPE_free(atmp); in asn1_str2type()