Searched refs:hugebuf (Results 1 – 2 of 2) sorted by relevance
| /src/crypto/openssl/crypto/cmp/ |
| H A D | cmp_ctx.c | 347 char hugebuf[1024 * 2]; in ossl_cmp_print_log() local 372 int printed = 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) in ossl_cmp_print_log() 379 res = BIO_puts(trc_out, hugebuf) > 0; in ossl_cmp_print_log() 386 if (BIO_vsnprintf(hugebuf, sizeof(hugebuf), format, args) > 0) in ossl_cmp_print_log() 387 res = ctx->log_cb(func, file, line, level, hugebuf); in ossl_cmp_print_log()
|
| /src/crypto/openssl/crypto/bio/ |
| H A D | bio_print.c | 898 char hugebuf[1024 * 2]; /* Was previously 10k, which is unreasonable in BIO_vprintf() local 901 char *hugebufp = hugebuf; in BIO_vprintf() 902 size_t hugebufsize = sizeof(hugebuf); in BIO_vprintf() 916 ret = BIO_write(bio, hugebuf, (int)retlen); in BIO_vprintf()
|