Home
last modified time | relevance | path

Searched refs:ReallocEntry (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/malloc_debug/
DRecordData.h117 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);
DRecordData.cpp76 ReallocEntry::ReallocEntry(void* pointer, size_t size, void* old_pointer) in ReallocEntry() function in ReallocEntry
79 std::string ReallocEntry::GetString() const { in GetString()
Dmalloc_debug.cpp606 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()