Home
last modified time | relevance | path

Searched refs:AllocEntry (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/malloc_debug/
DRecordData.h67 class AllocEntry : public RecordEntry {
69 AllocEntry(void* pointer);
70 virtual ~AllocEntry() = default;
76 DISALLOW_COPY_AND_ASSIGN(AllocEntry);
79 class MallocEntry : public AllocEntry {
93 class FreeEntry : public AllocEntry {
DRecordData.cpp55 AllocEntry::AllocEntry(void* pointer) : pointer_(pointer) { in AllocEntry() function in AllocEntry
58 MallocEntry::MallocEntry(void* pointer, size_t size) : AllocEntry(pointer), size_(size) { in MallocEntry()
65 FreeEntry::FreeEntry(void* pointer) : AllocEntry(pointer) { in FreeEntry()