Searched refs:ReallocEntry (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/malloc_debug/ |
D | RecordData.h | 118 class ReallocEntry : public MallocEntry { 120 ReallocEntry(void* pointer, size_t size, void* old_pointer); 121 virtual ~ReallocEntry() = default; 129 DISALLOW_COPY_AND_ASSIGN(ReallocEntry);
|
D | RecordData.cpp | 80 ReallocEntry::ReallocEntry(void* pointer, size_t size, void* old_pointer) in ReallocEntry() function in ReallocEntry 84 std::string ReallocEntry::GetString() const { in GetString()
|
D | malloc_debug.cpp | 493 g_debug->record->AddEntry(new ReallocEntry(pointer, bytes, nullptr)); in debug_realloc() 500 g_debug->record->AddEntry(new ReallocEntry(nullptr, bytes, pointer)); in debug_realloc() 584 g_debug->record->AddEntry(new ReallocEntry(new_pointer, bytes, pointer)); in debug_realloc()
|