Searched refs:ReallocEntry (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/malloc_debug/ |
D | RecordData.h | 117 class ReallocEntry : public MallocEntry { 119 ReallocEntry(void* pointer, size_t size, void* old_pointer); 120 virtual ~ReallocEntry() = default; 128 BIONIC_DISALLOW_COPY_AND_ASSIGN(ReallocEntry);
|
D | RecordData.cpp | 76 ReallocEntry::ReallocEntry(void* pointer, size_t size, void* old_pointer) in ReallocEntry() function in ReallocEntry 79 std::string ReallocEntry::GetString() const { in GetString()
|
D | malloc_debug.cpp | 606 g_debug->record->AddEntry(new ReallocEntry(pointer, bytes, nullptr)); in debug_realloc() 617 g_debug->record->AddEntry(new ReallocEntry(nullptr, bytes, pointer)); in debug_realloc() 709 g_debug->record->AddEntry(new ReallocEntry(new_pointer, bytes, pointer)); in debug_realloc()
|