Lines Matching refs:hugebuf
372 char hugebuf[1024 * 2];
397 BIO_snprintf(hugebuf, sizeof(hugebuf),
400 if (printed > 0 && (size_t)printed < sizeof(hugebuf)) {
401 if (BIO_vsnprintf(hugebuf + printed,
402 sizeof(hugebuf) - printed, format, args) > 0)
403 res = BIO_puts(trc_out, hugebuf) > 0;
409 if (BIO_vsnprintf(hugebuf, sizeof(hugebuf), format, args) > 0)
410 res = ctx->log_cb(func, file, line, level, hugebuf);