Lines Matching defs:value
22 /* Print out a name+value stack */
46 BIO_puts(out, nval->value);
47 else if (!nval->value)
51 BIO_printf(out, "%s:%s", nval->name, nval->value);
56 len = strlen(nval->value) + 1;
59 ascii2ebcdic(tmp, nval->value, len);
74 char *value = NULL;
97 if ((value = method->i2s(method, ext_str)) == NULL) {
102 BIO_printf(out, "%*s%s", indent, "", value);
107 len = strlen(value) + 1;
110 ascii2ebcdic(tmp, value, len);
131 OPENSSL_free(value);