Home | History | Annotate | Download | only in utils

Lines Matching full:indent

590 static void i2r_HashAlgAndValue(HashAlgAndValue *hash, BIO *out, int indent)
595 BIO_printf(out, "%*shashAlg: ", indent, "");
599 BIO_printf(out, "%*shashValue: ", indent, "");
606 static void i2r_LogotypeDetails(LogotypeDetails *details, BIO *out, int indent)
610 BIO_printf(out, "%*sLogotypeDetails\n", indent, "");
612 BIO_printf(out, "%*smediaType: ", indent, "");
622 i2r_HashAlgAndValue(hash, out, indent);
630 BIO_printf(out, "%*slogotypeURI: ", indent, "");
636 static void i2r_LogotypeImageInfo(LogotypeImageInfo *info, BIO *out, int indent)
640 BIO_printf(out, "%*sLogotypeImageInfo\n", indent, "");
643 BIO_printf(out, "%*stype: %ld\n", indent, "", val);
645 BIO_printf(out, "%*stype: default (1)\n", indent, "");
648 BIO_printf(out, "%*sfileSize: %ld\n", indent, "", val);
650 BIO_printf(out, "%*sxSize: %ld\n", indent, "", val);
652 BIO_printf(out, "%*sySize: %ld\n", indent, "", val);
654 BIO_printf(out, "%*sresolution [%d]\n", indent, "",
659 BIO_printf(out, "%*snumBits: %ld\n", indent, "", val);
663 BIO_printf(out, "%*stableSize: %ld\n", indent, "", val);
668 BIO_printf(out, "%*slanguage: ", indent, "");
674 static void i2r_LogotypeImage(LogotypeImage *image, BIO *out, int indent)
676 BIO_printf(out, "%*sLogotypeImage\n", indent, "");
678 i2r_LogotypeDetails(image->imageDetails, out, indent + 4);
681 i2r_LogotypeImageInfo(image->imageInfo, out, indent + 4);
686 int indent)
690 BIO_printf(out, "%*s%s - LogotypeData\n", indent, "", title);
695 i2r_LogotypeImage(image, out, indent + 4);
700 BIO_printf(out, "%*saudio: TODO\n", indent, "");
705 BIO *out, int indent)
709 BIO_printf(out, "%*s%s - LogotypeReference\n", indent, "", title);
717 indent, "", hash_num, uri_num);
726 i2r_HashAlgAndValue(hash, out, indent);
729 BIO_printf(out, "%*srefStructURI: ", indent, "");
736 int indent)
740 i2r_LogotypeData(info->d.direct, title, out, indent);
743 i2r_LogotypeReference(info->d.indirect, title, out, indent);
752 int indent = 0;
763 i2r_LogotypeInfo(info, "communityLogo", out, indent);
768 i2r_LogotypeInfo(logo->issuerLogo, "issuerLogo", out, indent );
772 i2r_LogotypeInfo(logo->subjectLogo, "subjectLogo", out, indent);
776 BIO_printf(out, "%*sotherLogos - TODO\n", indent, "");