Searched refs:AddEntry (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/malloc_debug/ |
D | malloc_debug.cpp | 337 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()
|
D | RecordData.h | 156 void AddEntry(const RecordEntry* entry);
|
D | RecordData.cpp | 218 void RecordData::AddEntry(const RecordEntry* entry) { in AddEntry() function in RecordData
|