Lines Matching defs:str
371 const char *str;
374 str = "BOOL ABSENT";
378 str = "FALSE";
382 str = "TRUE";
387 if (BIO_puts(out, str) <= 0)
393 static int asn1_print_integer(BIO *out, const ASN1_INTEGER *str)
397 s = i2s_ASN1_INTEGER(NULL, str);
419 static int asn1_print_obstring(BIO *out, const ASN1_STRING *str, int indent)
421 if (str->type == V_ASN1_BIT_STRING) {
422 if (BIO_printf(out, " (%ld unused bits)\n", str->flags & 0x7) <= 0)
426 if ((str->length > 0)
427 && BIO_dump_indent(out, (const char *)str->data, str->length,
439 ASN1_STRING *str;
449 str = (ASN1_STRING *)*fld;
450 utype = str->type & ~V_ASN1_NEG;
454 str = NULL;
456 str = (ASN1_STRING *)*fld;
462 str = (ASN1_STRING *)*fld;
499 ret = asn1_print_integer(out, str);
503 ret = ASN1_UTCTIME_print(out, str);
507 ret = ASN1_GENERALIZEDTIME_print(out, str);
516 ret = asn1_print_obstring(out, str, indent);
525 if (ASN1_parse_dump(out, str->data, str->length, indent, 0) <= 0)
531 ret = ASN1_STRING_print_ex(out, str, pctx->str_flags);