Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
DRecordData.h118 class ReallocEntry : public MallocEntry {
120 ReallocEntry(void* pointer, size_t size, void* old_pointer);
121 virtual ~ReallocEntry() = default;
129 DISALLOW_COPY_AND_ASSIGN(ReallocEntry);
DRecordData.cpp80 ReallocEntry::ReallocEntry(void* pointer, size_t size, void* old_pointer) in ReallocEntry() function in ReallocEntry
84 std::string ReallocEntry::GetString() const { in GetString()
Dmalloc_debug.cpp493 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()