Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
Dmalloc_debug.cpp433 g_debug->record->AddEntry(new MallocEntry(pointer, size)); in debug_malloc()
507 g_debug->record->AddEntry(new FreeEntry(pointer)); in debug_free()
589 g_debug->record->AddEntry(new MemalignEntry(pointer, bytes, alignment)); in debug_memalign()
606 g_debug->record->AddEntry(new ReallocEntry(pointer, bytes, nullptr)); in debug_realloc()
617 g_debug->record->AddEntry(new ReallocEntry(nullptr, bytes, pointer)); in debug_realloc()
709 g_debug->record->AddEntry(new ReallocEntry(new_pointer, bytes, pointer)); in debug_realloc()
760 g_debug->record->AddEntry(new CallocEntry(pointer, bytes, nmemb)); in debug_calloc()
DRecordData.h155 void AddEntry(const RecordEntry* entry);
DRecordData.cpp210 void RecordData::AddEntry(const RecordEntry* entry) { in AddEntry() function in RecordData