Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
DRecordData.h92 class FreeEntry : public AllocEntry {
94 explicit FreeEntry(void* pointer);
95 virtual ~FreeEntry() = default;
100 BIONIC_DISALLOW_COPY_AND_ASSIGN(FreeEntry);
DRecordData.cpp63 FreeEntry::FreeEntry(void* pointer) : AllocEntry(pointer) {} in FreeEntry() function in FreeEntry
65 std::string FreeEntry::GetString() const { in GetString()