| 1700 | |
| 1701 | #ifdef MEM_DEBUG |
| 1702 | void print_contents(FILE* file, MemPool* pool, bool used_only, |
| 1703 | const char* filter_path, const size_t filter_len) noexcept |
| 1704 | { |
| 1705 | for (Extent* ext = currentExtent; ext; ext = ext->next) |
| 1706 | ext->print_contents(file, pool, used_only, filter_path, filter_len); |
| 1707 | } |
| 1708 | #endif |
| 1709 | |
| 1710 | void validate(MemPool* pool, StatInt& vMap, StatInt& vUse) |
nothing calls this directly
no test coverage detected