Searched defs:MallocEntry (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/malloc_debug/
H A DRecordData.h78 class MallocEntry : public AllocEntry { class in inherits:AllocEntry
80 MallocEntry(void* pointer, size_t size);
81 virtual ~MallocEntry() = default;
89 DISALLOW_COPY_AND_ASSIGN(MallocEntry);
103 class CallocEntry : public MallocEntry {
117 class ReallocEntry : public MallocEntry {
132 class MemalignEntry : public MallocEntry {
H A DRecordData.cpp57 MallocEntry::MallocEntry(void* pointer, size_t size) : AllocEntry(pointer), size_(size) {} function in class:MallocEntry
59 std::string MallocEntry::GetString() const {
70 : MallocEntry(pointer, size), nmemb_(nmemb) {}
77 : MallocEntry(pointer, size), old_pointer_(old_pointer) {}
85 : MallocEntry(pointer, size), alignment_(alignment) {}

Completed in 38 milliseconds