Lines Matching refs:printed_len
18 int printed_len; in describe_param_type() local
45 printed_len = BIO_snprintf(buf, bufsz, "%s: ", param->key); in describe_param_type()
46 if (printed_len > 0) { in describe_param_type()
47 buf += printed_len; in describe_param_type()
48 bufsz -= printed_len; in describe_param_type()
50 printed_len = BIO_snprintf(buf, bufsz, "%s%s", type_mod, type); in describe_param_type()
51 if (printed_len > 0) { in describe_param_type()
52 buf += printed_len; in describe_param_type()
53 bufsz -= printed_len; in describe_param_type()
56 printed_len = BIO_snprintf(buf, bufsz, " [%d]", param->data_type); in describe_param_type()
57 if (printed_len > 0) { in describe_param_type()
58 buf += printed_len; in describe_param_type()
59 bufsz -= 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()
67 if (printed_len > 0) { in describe_param_type()
68 buf += printed_len; in describe_param_type()
69 bufsz -= printed_len; in describe_param_type()