Home | History | Annotate | Download | only in asn1

Lines Matching refs:atmp

631 	ASN1_TYPE *atmp = NULL;
640 if (!(atmp = ASN1_TYPE_new()))
669 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean))
683 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str)))
696 if (!(atmp->value.object = OBJ_txt2obj(str, 0)))
710 if (!(atmp->value.asn1_string = ASN1_STRING_new()))
715 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1))
720 atmp->value.asn1_string->type = utype;
721 if (!ASN1_TIME_check(atmp->value.asn1_string))
750 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str,
764 if (!(atmp->value.asn1_string = ASN1_STRING_new()))
779 atmp->value.asn1_string->data = rdata;
780 atmp->value.asn1_string->length = rdlen;
781 atmp->value.asn1_string->type = utype;
785 ASN1_STRING_set(atmp->value.asn1_string, str, -1);
788 if (!CONF_parse_list(str, ',', 1, bitstr_cb, atmp->value.bit_string))
804 atmp->value.asn1_string->flags
806 atmp->value.asn1_string->flags
820 atmp->type = utype;
821 return atmp;
828 ASN1_TYPE_free(atmp);