Lines Matching refs:buf
13 static int describe_param_type(char *buf, size_t bufsz, const OSSL_PARAM *param) in describe_param_type() argument
45 printed_len = BIO_snprintf(buf, bufsz, "%s: ", param->key); in describe_param_type()
47 buf += printed_len; in describe_param_type()
50 printed_len = BIO_snprintf(buf, bufsz, "%s%s", type_mod, type); in describe_param_type()
52 buf += printed_len; in describe_param_type()
56 printed_len = BIO_snprintf(buf, bufsz, " [%d]", param->data_type); in describe_param_type()
58 buf += printed_len; in describe_param_type()
63 printed_len = BIO_snprintf(buf, bufsz, " (arbitrary size)"); in describe_param_type()
65 printed_len = BIO_snprintf(buf, bufsz, " (max %zu bytes large)", in describe_param_type()
68 buf += printed_len; in describe_param_type()
71 *buf = '\0'; in describe_param_type()
88 char buf[200]; /* This should be ample space */ in print_param_types() local
90 describe_param_type(buf, sizeof(buf), pdefs); in print_param_types()
91 BIO_printf(bio_out, "%*s %s\n", indent, "", buf); in print_param_types()