| 487 | |
| 488 | #ifdef MEM_DEBUG |
| 489 | void print_memory(UCHAR* m, FILE* file, MemPool* pool, bool used_only, |
| 490 | const char* filter_path, const size_t filter_len) |
| 491 | { |
| 492 | while (m < memory) |
| 493 | { |
| 494 | MemBlock* block = (MemBlock*)m; |
| 495 | block->print_contents(block->pool == pool, file, used_only, filter_path, filter_len); |
| 496 | m += block->getSize(); |
| 497 | } |
| 498 | } |
| 499 | #endif |
| 500 | |
| 501 | private: |
nothing calls this directly
no test coverage detected