Searched refs:records (Results 1 - 6 of 6) sorted by relevance

/art/tools/dmtracedump/
H A Dcreatetesttrace.cc72 dataRecord* records; variable
145 records = new dataRecord[numRecords];
197 records[nextRecord].time = time;
198 records[nextRecord].threadId = threadId;
208 records[nextRecord].fullName = strndup(save_cp, len);
211 records[nextRecord].className = nullptr;
212 records[nextRecord].methodName = nullptr;
213 records[nextRecord].signature = nullptr;
217 if (len > 0) records[nextRecord].className = strndup(save_cp, len);
223 records[nextRecor
[all...]
/art/runtime/gc/
H A Dallocation_record.cc42 // Check whether there's a system property overriding the max number of records.
58 // Check whether there's a system property overriding the number of recent records.
102 // Only visit the last recent_record_max_ number of allocation records in entries_ and mark the
140 // Only the first (size - recent_record_max_) number of records can be deleted.
166 VLOG(heap) << "Deleted " << count_deleted << " allocation records";
167 VLOG(heap) << "Updated " << count_moved << " allocation records";
223 AllocRecordObjectMap* records = heap->GetAllocationRecords(); local
224 if (records == nullptr) {
225 records = new AllocRecordObjectMap;
226 heap->SetAllocationRecords(records);
256 AllocRecordObjectMap* records = heap->GetAllocationRecords(); local
[all...]
H A Dheap.h758 void SetAllocationRecords(AllocRecordObjectMap* records)
H A Dheap.cc3984 void Heap::SetAllocationRecords(AllocRecordObjectMap* records) { argument
3985 allocation_records_.reset(records);
/art/runtime/hprof/
H A Dhprof.cc97 // Values for the first byte of HEAP_DUMP and HEAP_DUMP_SEGMENT records:
820 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); local
821 CHECK(records != nullptr);
826 for (auto it = records->Begin(), end = records->End(); it != end; ++it) {
836 // The insertion should always succeed, i.e. no duplicate object pointers in "records"
888 // Set used to keep track of what simple root records we have already
889 // emitted, to avoid emitting duplicate entries. The simple root records are
/art/runtime/
H A Ddebugger.cc4812 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); local
4813 CHECK(records != nullptr);
4815 const uint16_t capped_count = CappedAllocRecordCount(records->GetRecentAllocationSize());
4819 for (auto it = records->RBegin(), end = records->REnd();
4937 gc::AllocRecordObjectMap* records = Runtime::Current()->GetHeap()->GetAllocationRecords(); local
4941 if (records == nullptr) {
4943 records = &dummy;
4945 // We don't need to wait on the condition variable records->new_record_condition_, because this
4956 const uint16_t capped_count = CappedAllocRecordCount(records
[all...]

Completed in 142 milliseconds