Lines Matching refs:pointers
99 static uint64_t MallocExecute(const AllocEntry& entry, Pointers* pointers) { in MallocExecute() argument
106 pointers->Add(entry.ptr, memory); in MallocExecute()
111 static uint64_t CallocExecute(const AllocEntry& entry, Pointers* pointers) { in CallocExecute() argument
118 pointers->Add(entry.ptr, memory); in CallocExecute()
123 static uint64_t ReallocExecute(const AllocEntry& entry, Pointers* pointers) { in ReallocExecute() argument
126 old_memory = pointers->Remove(entry.u.old_ptr); in ReallocExecute()
135 pointers->Add(entry.ptr, memory); in ReallocExecute()
140 static uint64_t MemalignExecute(const AllocEntry& entry, Pointers* pointers) { in MemalignExecute() argument
147 pointers->Add(entry.ptr, memory); in MemalignExecute()
152 static uint64_t FreeExecute(const AllocEntry& entry, Pointers* pointers) { in FreeExecute() argument
157 void* memory = pointers->Remove(entry.ptr); in FreeExecute()
163 uint64_t AllocExecute(const AllocEntry& entry, Pointers* pointers) { in AllocExecute() argument
166 return MallocExecute(entry, pointers); in AllocExecute()
168 return CallocExecute(entry, pointers); in AllocExecute()
170 return ReallocExecute(entry, pointers); in AllocExecute()
172 return MemalignExecute(entry, pointers); in AllocExecute()
174 return FreeExecute(entry, pointers); in AllocExecute()