Searched refs:records (Results 1 – 8 of 8) sorted by relevance
165 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local166 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 …]
956 void SetAllocationRecords(AllocRecordObjectMap* records)
4348 void Heap::SetAllocationRecords(AllocRecordObjectMap* records) { in SetAllocationRecords() argument4349 allocation_records_.reset(records); in SetAllocationRecords()
3 ROOT_DEBUGGER records manually changed to a ROOT_FINALIZING record.
214 gc::AllocRecordObjectMap* records = runtime->GetHeap()->GetAllocationRecords(); in Dump() local215 DCHECK(records != nullptr); in Dump()221 for (auto it = records->Begin(), end = records->End(); it != end; ++it) { in Dump()
948 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in GetRecentAllocations() local952 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()
830 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in PopulateAllocationTrackingTraces() local831 CHECK(records != nullptr); in PopulateAllocationTrackingTraces()836 for (auto it = records->Begin(), end = records->End(); it != end; ++it) { in PopulateAllocationTrackingTraces()
784 private void cleanupRecordsLocked(@NonNull Map<DexLoader, ?> records, in cleanupRecordsLocked() argument787 for (var it = records.entrySet().iterator(); it.hasNext();) { in cleanupRecordsLocked()