| 563 | } |
| 564 | |
| 565 | void MemoryLeakDetector::storeLeakInformation(MemoryLeakDetectorNode * node, char *new_memory, size_t size, TestMemoryAllocator *allocator, const char *file, size_t line) |
| 566 | { |
| 567 | node->init(new_memory, allocationSequenceNumber_++, size, allocator, current_period_, current_allocation_stage_, file, line); |
| 568 | addMemoryCorruptionInformation(node->memory_ + node->size_); |
| 569 | memoryTable_.addNewNode(node); |
| 570 | } |
| 571 | |
| 572 | char* MemoryLeakDetector::reallocateMemoryAndLeakInformation(TestMemoryAllocator* allocator, char* memory, size_t size, const char* file, size_t line, bool allocatNodesSeperately) |
| 573 | { |
nothing calls this directly
no test coverage detected