Home
last modified time | relevance | path

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

/bionic/libc/malloc_debug/
Dmalloc_debug.cpp337 g_debug->record->AddEntry(new MallocEntry(pointer, size)); in debug_malloc()
406 g_debug->record->AddEntry(new FreeEntry(pointer)); in debug_free()
478 g_debug->record->AddEntry(new MemalignEntry(pointer, bytes, alignment)); in debug_memalign()
493 g_debug->record->AddEntry(new ReallocEntry(pointer, bytes, nullptr)); in debug_realloc()
500 g_debug->record->AddEntry(new ReallocEntry(nullptr, bytes, pointer)); in debug_realloc()
584 g_debug->record->AddEntry(new ReallocEntry(new_pointer, bytes, pointer)); in debug_realloc()
634 g_debug->record->AddEntry(new CallocEntry(pointer, bytes, nmemb)); in debug_calloc()
DRecordData.h156 void AddEntry(const RecordEntry* entry);
DRecordData.cpp218 void RecordData::AddEntry(const RecordEntry* entry) { in AddEntry() function in RecordData