| 721 | } |
| 722 | |
| 723 | void MemoryLeakDetector::ConstructMemoryLeakReport(MemLeakPeriod period) |
| 724 | { |
| 725 | MemoryLeakDetectorNode* leak = memoryTable_.getFirstLeak(period); |
| 726 | |
| 727 | outputBuffer_.startMemoryLeakReporting(); |
| 728 | |
| 729 | while (leak) { |
| 730 | outputBuffer_.reportMemoryLeak(leak); |
| 731 | leak = memoryTable_.getNextLeak(leak, period); |
| 732 | } |
| 733 | |
| 734 | outputBuffer_.stopMemoryLeakReporting(); |
| 735 | } |
| 736 | |
| 737 | const char* MemoryLeakDetector::report(MemLeakPeriod period) |
| 738 | { |
nothing calls this directly
no test coverage detected