| 72 | |
| 73 | |
| 74 | void MemoryReporterPlugin::setGlobalMemoryReportAllocators() |
| 75 | { |
| 76 | mallocAllocator.setRealAllocator(getCurrentMallocAllocator()); |
| 77 | setCurrentMallocAllocator(&mallocAllocator); |
| 78 | |
| 79 | newAllocator.setRealAllocator(getCurrentNewAllocator()); |
| 80 | setCurrentNewAllocator(&newAllocator); |
| 81 | |
| 82 | newArrayAllocator.setRealAllocator(getCurrentNewArrayAllocator()); |
| 83 | setCurrentNewArrayAllocator(&newArrayAllocator); |
| 84 | } |
| 85 | |
| 86 | void MemoryReporterPlugin::removeGlobalMemoryReportAllocators() |
| 87 | { |
nothing calls this directly
no test coverage detected