Searched defs:freed (Results 1 - 5 of 5) sorted by relevance

/art/runtime/gc/collector/
H A Diteration.h63 void SetFreedRevoke(uint64_t freed) { argument
64 freed_bytes_revoke_ = freed;
H A Dgarbage_collector.cc99 // Update cumulative statistics with how many bytes the GC iteration freed.
199 void GarbageCollector::RecordFree(const ObjectBytePair& freed) { argument
200 GetCurrentIteration()->freed_.Add(freed);
201 heap_->RecordFree(freed.objects, freed.bytes);
203 void GarbageCollector::RecordFreeLOS(const ObjectBytePair& freed) { argument
204 GetCurrentIteration()->freed_los_.Add(freed);
205 heap_->RecordFree(freed.objects, freed.bytes);
234 << GetName() << " freed
[all...]
H A Dmark_sweep.cc1212 ObjectBytePair freed; local
1256 freed.objects += chunk_free_pos;
1257 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1268 freed.objects += chunk_free_pos;
1269 freed.bytes += alloc_space->FreeList(self, chunk_free_pos, chunk_free_buffer);
1298 RecordFree(freed);
/art/runtime/gc/space/
H A Dmemory_tool_malloc_space-inl.h227 size_t freed = 0; local
229 freed += Free(self, ptrs[i]);
232 return freed;
H A Dspace.h228 // Returns how many bytes were freed.
231 // Returns how many bytes were freed.
254 collector::ObjectBytePair freed; member in struct:art::gc::space::AllocSpace::SweepCallbackContext

Completed in 89 milliseconds