Home
last modified time | relevance | path

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

/art/tools/dmtracedump/
Dcreatetesttrace.cc72 dataRecord* records; variable
145 records = new dataRecord[numRecords]; in parseInputFile()
197 records[nextRecord].time = time; in parseInputFile()
198 records[nextRecord].threadId = threadId; in parseInputFile()
208 records[nextRecord].fullName = strndup(save_cp, len); in parseInputFile()
211 records[nextRecord].className = nullptr; in parseInputFile()
212 records[nextRecord].methodName = nullptr; in parseInputFile()
213 records[nextRecord].signature = nullptr; in parseInputFile()
217 if (len > 0) records[nextRecord].className = strndup(save_cp, len); in parseInputFile()
223 records[nextRecord].methodName = strndup(save_cp, len); in parseInputFile()
[all …]
/art/runtime/gc/
Dallocation_record.cc149 AllocRecordObjectMap* records = heap->GetAllocationRecords(); in SetAllocTrackingEnabled() local
150 if (records == nullptr) { in SetAllocTrackingEnabled()
151 records = new AllocRecordObjectMap; in SetAllocTrackingEnabled()
152 heap->SetAllocationRecords(records); in SetAllocTrackingEnabled()
154 CHECK(records != nullptr); in SetAllocTrackingEnabled()
155 records->SetMaxStackDepth(heap->GetAllocTrackerStackDepth()); in SetAllocTrackingEnabled()
156 size_t sz = sizeof(AllocRecordStackTraceElement) * records->max_stack_depth_ + in SetAllocTrackingEnabled()
158 LOG(INFO) << "Enabling alloc tracker (" << records->alloc_record_max_ << " entries of " in SetAllocTrackingEnabled()
159 << records->max_stack_depth_ << " frames, taking up to " in SetAllocTrackingEnabled()
160 << PrettySize(sz * records->alloc_record_max_) << ")"; in SetAllocTrackingEnabled()
[all …]
Dheap.h875 void SetAllocationRecords(AllocRecordObjectMap* records)
Dheap.cc4041 void Heap::SetAllocationRecords(AllocRecordObjectMap* records) { in SetAllocationRecords() argument
4042 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.cc953 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in GetRecentAllocations() local
957 if (records == nullptr) { in GetRecentAllocations()
959 records = &fallback_record_map; in GetRecentAllocations()
974 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize()); in GetRecentAllocations()
977 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations()
1007 LOG(INFO) << "allocation records all objects: " << records->Size(); in GetRecentAllocations()
1045 for (auto it = records->RBegin(), end = records->REnd(); in GetRecentAllocations()
/art/runtime/hprof/
Dhprof.cc835 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); in PopulateAllocationTrackingTraces() local
836 CHECK(records != nullptr); in PopulateAllocationTrackingTraces()
841 for (auto it = records->Begin(), end = records->End(); it != end; ++it) { in PopulateAllocationTrackingTraces()