Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
DRecordData.h79 class MallocEntry : public AllocEntry {
81 MallocEntry(void* pointer, size_t size);
82 virtual ~MallocEntry() = default;
90 DISALLOW_COPY_AND_ASSIGN(MallocEntry);
104 class CallocEntry : public MallocEntry {
118 class ReallocEntry : public MallocEntry {
133 class MemalignEntry : public MallocEntry {
DRecordData.cpp58 MallocEntry::MallocEntry(void* pointer, size_t size) : AllocEntry(pointer), size_(size) { in MallocEntry() function in MallocEntry
61 std::string MallocEntry::GetString() const { in GetString()
73 : MallocEntry(pointer, size), nmemb_(nmemb) { in CallocEntry()
81 : MallocEntry(pointer, size), old_pointer_(old_pointer) { in ReallocEntry()
91 : MallocEntry(pointer, size), alignment_(alignment) { in MemalignEntry()
Dmalloc_debug.cpp337 g_debug->record->AddEntry(new MallocEntry(pointer, size)); in debug_malloc()