| 634 | |
| 635 | #ifdef MEM_DEBUG |
| 636 | void print_contents(FILE* file, MemPool* pool, bool used_only, |
| 637 | const char* filter_path, const size_t filter_len) noexcept |
| 638 | { |
| 639 | fprintf(file, "Big hunk %p: memory=%p length=%" SIZEFORMAT "\n", |
| 640 | this, block, length); |
| 641 | block->print_contents(true, file, used_only, filter_path, filter_len); |
| 642 | } |
| 643 | #endif |
| 644 | |
| 645 | static size_t hdrSize() |
nothing calls this directly
no test coverage detected