Home
last modified time | relevance | path

Searched refs:hugebuf (Results 1 – 2 of 2) sorted by relevance

/third_party/openssl/crypto/cmp/
Dcmp_ctx.c362 char hugebuf[1024 * 2]; in ossl_cmp_print_log() local
387 BIO_snprintf(hugebuf, sizeof(hugebuf), in ossl_cmp_print_log()
390 if (printed > 0 && (size_t)printed < sizeof(hugebuf)) { in ossl_cmp_print_log()
391 if (BIO_vsnprintf(hugebuf + printed, in ossl_cmp_print_log()
392 sizeof(hugebuf) - printed, format, args) > 0) in ossl_cmp_print_log()
393 res = BIO_puts(trc_out, hugebuf) > 0; in ossl_cmp_print_log()
399 if (BIO_vsnprintf(hugebuf, sizeof(hugebuf), format, args) > 0) in ossl_cmp_print_log()
400 res = ctx->log_cb(func, file, line, level, hugebuf); in ossl_cmp_print_log()
/third_party/openssl/crypto/bio/
Dbio_print.c901 char hugebuf[1024 * 2]; /* Was previously 10k, which is unreasonable in BIO_vprintf() local
904 char *hugebufp = hugebuf; in BIO_vprintf()
905 size_t hugebufsize = sizeof(hugebuf); in BIO_vprintf()
919 ret = BIO_write(bio, hugebuf, (int)retlen); in BIO_vprintf()