Lines Matching full:atmp
633 ASN1_TYPE *atmp = NULL;
642 if (!(atmp = ASN1_TYPE_new()))
671 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean))
685 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str)))
698 if (!(atmp->value.object = OBJ_txt2obj(str, 0)))
712 if (!(atmp->value.asn1_string = ASN1_STRING_new()))
717 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1))
722 atmp->value.asn1_string->type = utype;
723 if (!ASN1_TIME_check(atmp->value.asn1_string))
751 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str,
765 if (!(atmp->value.asn1_string = ASN1_STRING_new()))
780 atmp->value.asn1_string->data = rdata;
781 atmp->value.asn1_string->length = rdlen;
782 atmp->value.asn1_string->type = utype;
786 ASN1_STRING_set(atmp->value.asn1_string, str, -1);
789 if (!CONF_parse_list(str, ',', 1, bitstr_cb, atmp->value.bit_string))
805 atmp->value.asn1_string->flags
807 atmp->value.asn1_string->flags
821 atmp->type = utype;
822 return atmp;
829 ASN1_TYPE_free(atmp);