Home | History | Annotate | Download | only in asn1

Lines Matching refs:tt

80 	const ASN1_TEMPLATE *tt;
115 tt = it->templates + i;
116 tmpfld = asn1_get_field(fld, tt);
117 return ASN1_template_print(out, tmpfld, indent, tt);
122 for(i = 0, tt = it->templates; i < it->tcount; i++, tt++) {
123 tmpfld = asn1_get_field(fld, tt);
124 ASN1_template_print(out, tmpfld, indent + 2, tt);
134 int ASN1_template_print(BIO *out, void *fld, int indent, const ASN1_TEMPLATE *tt)
140 flags = tt->flags;
148 BIO_printf(out, "%*s%s OF %s {\n", indent, "", tname, tt->field_name);
151 asn1_item_print_nm(out, skitem, indent + 2, tt->item, "");
155 BIO_printf(out, "%*s%s OF %s ABSENT\n", indent, "", tname, tt->field_name);
158 return asn1_item_print_nm(out, fld, indent, tt->item, tt->field_name);