Lines Matching defs:atmp
577 ASN1_TYPE *atmp = NULL;
583 if ((atmp = ASN1_TYPE_new()) == NULL) {
608 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) {
620 if ((atmp->value.integer
632 if ((atmp->value.object = OBJ_txt2obj(str, 0)) == NULL) {
644 if ((atmp->value.asn1_string = ASN1_STRING_new()) == NULL) {
648 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) {
652 atmp->value.asn1_string->type = utype;
653 if (!ASN1_TIME_check(atmp->value.asn1_string)) {
678 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str,
688 if ((atmp->value.asn1_string = ASN1_STRING_new()) == NULL) {
698 atmp->value.asn1_string->data = rdata;
699 atmp->value.asn1_string->length = rdlen;
700 atmp->value.asn1_string->type = utype;
702 ASN1_STRING_set(atmp->value.asn1_string, str, -1);
706 (str, ',', 1, bitstr_cb, atmp->value.bit_string)) {
718 atmp->value.asn1_string->flags
720 atmp->value.asn1_string->flags |= ASN1_STRING_FLAG_BITS_LEFT;
730 atmp->type = utype;
731 return atmp;
737 ASN1_TYPE_free(atmp);