Home
last modified time | relevance | path

Searched refs:records (Results 1 – 8 of 8) sorted by relevance

/art/runtime/gc/
Dallocation_record.cc165 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local
166 if (records == nullptr) { in SetAllocTrackingEnabled()
167 records = new AllocRecordObjectMap; in SetAllocTrackingEnabled()
168 heap->SetAllocationRecords(records); in SetAllocTrackingEnabled()
170 CHECK(records != nullptr); in SetAllocTrackingEnabled()
171 records->SetMaxStackDepth(heap->GetAllocTrackerStackDepth()); in SetAllocTrackingEnabled()
172 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled()
174 LOG(INFO) << "Enabling alloc tracker (" << records->alloc_record_max_ << " entries of " in SetAllocTrackingEnabled()
175 << records->max_stack_depth_ << " frames, taking up to " in SetAllocTrackingEnabled()
176 << PrettySize(sz * records->alloc_record_max_) << ")"; in SetAllocTrackingEnabled()
[all …]
Dheap.h956 void SetAllocationRecords(AllocRecordObjectMap* records)
Dheap.cc4348 void Heap::SetAllocationRecords(AllocRecordObjectMap* records) { in SetAllocationRecords() argument
4349 allocation_records_.reset(records); in SetAllocationRecords()
/art/tools/ahat/etc/
DREADME.txt3 ROOT_DEBUGGER records manually changed to a ROOT_FINALIZING record.
/art/runtime/
Dreference_table.cc214 gc::AllocRecordObjectMap* records = runtime->GetHeap()->GetAllocationRecords(); in Dump() local
215 DCHECK(records != nullptr); in Dump()
221 for (auto it = records->Begin(), end = records->End(); it != end; ++it) { in Dump()
Ddebugger.cc948 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in GetRecentAllocations() local
952 if (records == nullptr) { in GetRecentAllocations()
954 records = &fallback_record_map; in GetRecentAllocations()
969 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); in GetRecentAllocations()
972 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations()
1002 LOG(INFO) << "allocation records all objects: " << records->Size(); in GetRecentAllocations()
1040 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations()
/art/runtime/hprof/
Dhprof.cc830 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in PopulateAllocationTrackingTraces() local
831 CHECK(records != nullptr); in PopulateAllocationTrackingTraces()
836 for (auto it = records->Begin(), end = records->End(); it != end; ++it) { in PopulateAllocationTrackingTraces()
/art/libartservice/service/java/com/android/server/art/
DDexUseManagerLocal.java784 private void cleanupRecordsLocked(@NonNull Map<DexLoader, ?> records, in cleanupRecordsLocked() argument
787 for (var it = records.entrySet().iterator(); it.hasNext();) { in cleanupRecordsLocked()