Lines Matching defs:balloc
399 auto &balloc = handler->get_block_allocator();
420 util::format_hex(balloc, StringRef{id, static_cast<size_t>(idlen)});
461 auto &balloc = handler->get_block_allocator();
490 util::format_hex(balloc, StringRef{id, static_cast<size_t>(idlen)});
2572 StringRef get_x509_name(BlockAllocator &balloc, X509_NAME *nm) {
2587 auto iov = make_byte_ref(balloc, slen + 1);
2594 StringRef get_x509_subject_name(BlockAllocator &balloc, X509 *x) {
2595 return get_x509_name(balloc, X509_get_subject_name(x));
2598 StringRef get_x509_issuer_name(BlockAllocator &balloc, X509 *x) {
2599 return get_x509_name(balloc, X509_get_issuer_name(x));
2602 StringRef get_x509_serial(BlockAllocator &balloc, X509 *x) {
2614 return util::format_hex(balloc, StringRef{b.data(), static_cast<size_t>(n)});