MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / print_memory

Method print_memory

src/common/classes/alloc.cpp:489–498  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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
501private:

Callers

nothing calls this directly

Calls 2

print_contentsMethod · 0.45
getSizeMethod · 0.45

Tested by

no test coverage detected