Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
DRecordData.h69 class AllocEntry : public RecordEntry {
71 explicit AllocEntry(void* pointer, uint64_t st, uint64_t et);
72 virtual ~AllocEntry() = default;
82 BIONIC_DISALLOW_COPY_AND_ASSIGN(AllocEntry);
85 class MallocEntry : public AllocEntry {
99 class FreeEntry : public AllocEntry {
DRecordData.cpp56 AllocEntry::AllocEntry(void* pointer, uint64_t start_ns, uint64_t end_ns) in AllocEntry() function in AllocEntry
60 : AllocEntry(pointer, start_ns, end_ns), size_(size) {} in MallocEntry()
68 : AllocEntry(pointer, start_ns, end_ns) {} in FreeEntry()