Searched refs:printed_len (Results 1 – 2 of 2) sorted by relevance
/freebsd/crypto/openssl/apps/lib/ |
H A D | app_params.c | 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() [all …]
|
/freebsd/crypto/openssl/crypto/err/ |
H A D | err_blocks.c | 63 int printed_len = 0; in ERR_vset_error() local 90 printed_len = BIO_vsnprintf(buf, buf_size, fmt, args); in ERR_vset_error() 92 if (printed_len < 0) in ERR_vset_error() 93 printed_len = 0; in ERR_vset_error() 95 buf[printed_len] = '\0'; in ERR_vset_error() 103 if ((rbuf = OPENSSL_realloc(buf, printed_len + 1)) != NULL) { in ERR_vset_error() 105 buf_size = printed_len + 1; in ERR_vset_error() 106 buf[printed_len] = '\0'; in ERR_vset_error()
|