Home
last modified time | relevance | path

Searched refs:AllocRecord (Results 1 – 2 of 2) sorted by relevance

/art/runtime/
Ddebugger.h46 class AllocRecord; variable
677 static AllocRecord* recent_allocation_records_ PT_GUARDED_BY(Locks::alloc_tracker_lock_);
716 friend class AllocRecord; // For type_cache_ with proper annotalysis. variable
Ddebugger.cc135 class AllocRecord { class
137 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {} in AllocRecord() function in art::AllocRecord
321 AllocRecord* Dbg::recent_allocation_records_ = nullptr; // TODO: CircularBuffer<AllocRecord>
4507 << PrettySize(sizeof(AllocRecord) * alloc_record_max_) << ")"; in SetAllocTrackingEnabled()
4510 recent_allocation_records_ = new AllocRecord[alloc_record_max_]; in SetAllocTrackingEnabled()
4534 AllocRecordStackVisitor(Thread* thread, AllocRecord* record) in AllocRecordStackVisitor()
4561 AllocRecord* record;
4581 AllocRecord* record = &recent_allocation_records_[alloc_record_head_]; in RecordAllocation()
4624 AllocRecord* record = &recent_allocation_records_[i]; in DumpRecentAllocations()
4756 AllocRecord* record = &recent_allocation_records_[idx]; in GetRecentAllocations()
[all …]