Lines Matching full:indent
564 static void i2r_HashAlgAndValue(HashAlgAndValue *hash, BIO *out, int indent)
569 BIO_printf(out, "%*shashAlg: ", indent, "");
573 BIO_printf(out, "%*shashValue: ", indent, "");
580 static void i2r_LogotypeDetails(LogotypeDetails *details, BIO *out, int indent)
584 BIO_printf(out, "%*sLogotypeDetails\n", indent, "");
586 BIO_printf(out, "%*smediaType: ", indent, "");
596 i2r_HashAlgAndValue(hash, out, indent);
604 BIO_printf(out, "%*slogotypeURI: ", indent, "");
610 static void i2r_LogotypeImageInfo(LogotypeImageInfo *info, BIO *out, int indent)
614 BIO_printf(out, "%*sLogotypeImageInfo\n", indent, "");
617 BIO_printf(out, "%*stype: %ld\n", indent, "", val);
619 BIO_printf(out, "%*stype: default (1)\n", indent, "");
622 BIO_printf(out, "%*sxSize: %ld\n", indent, "", val);
624 BIO_printf(out, "%*sySize: %ld\n", indent, "", val);
626 BIO_printf(out, "%*sresolution\n", indent, "");
630 BIO_printf(out, "%*slanguage: ", indent, "");
636 static void i2r_LogotypeImage(LogotypeImage *image, BIO *out, int indent)
638 BIO_printf(out, "%*sLogotypeImage\n", indent, "");
640 i2r_LogotypeDetails(image->imageDetails, out, indent + 4);
643 i2r_LogotypeImageInfo(image->imageInfo, out, indent + 4);
648 int indent)
652 indent, "", title);
657 i2r_LogotypeImage(image, out, indent + 4);
662 BIO_printf(out, "%*saudio: TODO\n", indent, "");
667 BIO *out, int indent)
671 BIO_printf(out, "%*s%s - LogotypeReference\n", indent, "", title);
679 indent, "", hash_num, uri_num);
688 i2r_HashAlgAndValue(hash, out, indent);
691 BIO_printf(out, "%*srefStructURI: ", indent, "");
698 int indent)
702 i2r_LogotypeData(info->d.direct, title, out, indent);
705 i2r_LogotypeReference(info->d.indirect, title, out, indent);
714 int indent = 0;
725 i2r_LogotypeInfo(info, "communityLogo", out, indent);
730 i2r_LogotypeInfo(logo->issuerLogo, "issuerLogo", out, indent );
734 i2r_LogotypeInfo(logo->subjectLogo, "subjectLogo", out, indent);
738 BIO_printf(out, "%*sotherLogos - TODO\n", indent, "");