Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
DRecordData.h110 class CallocEntry : public MallocEntry {
112 CallocEntry(void* pointer, size_t nmemb, size_t size, uint64_t st, uint64_t et);
113 virtual ~CallocEntry() = default;
121 BIONIC_DISALLOW_COPY_AND_ASSIGN(CallocEntry);
DRecordData.cpp75 CallocEntry::CallocEntry(void* pointer, size_t nmemb, size_t size, uint64_t start_ns, in CallocEntry() function in CallocEntry
79 bool CallocEntry::Write(int fd) const { in Write()
Dmalloc_debug.cpp958 new CallocEntry(pointer, nmemb, bytes, result.GetStartTimeNS(), result.GetEndTimeNS())); in debug_calloc()