Searched refs:hugebuf (Results 1 – 2 of 2) sorted by relevance
/openssl/crypto/cmp/ |
H A D | cmp_ctx.c | 347 char hugebuf[1024 * 2]; in ossl_cmp_print_log() local 372 BIO_snprintf(hugebuf, sizeof(hugebuf), in ossl_cmp_print_log() 375 if (printed > 0 && (size_t)printed < sizeof(hugebuf)) { in ossl_cmp_print_log() 376 if (BIO_vsnprintf(hugebuf + printed, in ossl_cmp_print_log() 377 sizeof(hugebuf) - printed, format, args) > 0) in ossl_cmp_print_log() 378 res = BIO_puts(trc_out, hugebuf) > 0; in ossl_cmp_print_log() 384 if (BIO_vsnprintf(hugebuf, sizeof(hugebuf), format, args) > 0) in ossl_cmp_print_log() 385 res = ctx->log_cb(func, file, line, level, hugebuf); in ossl_cmp_print_log()
|
/openssl/crypto/bio/ |
H A D | bio_print.c | 895 char hugebuf[1024 * 2]; /* Was previously 10k, which is unreasonable in BIO_vprintf() local 898 char *hugebufp = hugebuf; in BIO_vprintf() 899 size_t hugebufsize = sizeof(hugebuf); in BIO_vprintf() 913 ret = BIO_write(bio, hugebuf, (int)retlen); in BIO_vprintf()
|
Completed in 7 milliseconds