Home
last modified time | relevance | path

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

/art/runtime/
Ddebugger.h393 static inline bool IsAllocTrackingEnabled() { return recent_allocation_records_ != NULL; } in IsAllocTrackingEnabled()
426 static AllocRecord* recent_allocation_records_; variable
Ddebugger.cc188 AllocRecord* Dbg::recent_allocation_records_ PT_GUARDED_BY(gAllocTrackerLock) = NULL; // TODO: Cir…
3480 if (recent_allocation_records_ == NULL) { in SetAllocTrackingEnabled()
3486 recent_allocation_records_ = new AllocRecord[gAllocRecordMax]; in SetAllocTrackingEnabled()
3487 CHECK(recent_allocation_records_ != NULL); in SetAllocTrackingEnabled()
3490 delete[] recent_allocation_records_; in SetAllocTrackingEnabled()
3491 recent_allocation_records_ = NULL; in SetAllocTrackingEnabled()
3532 if (recent_allocation_records_ == NULL) { in RecordAllocation()
3542 AllocRecord* record = &recent_allocation_records_[gAllocRecordHead]; in RecordAllocation()
3571 if (recent_allocation_records_ == NULL) { in DumpRecentAllocations()
3583 AllocRecord* record = &recent_allocation_records_[i]; in DumpRecentAllocations()
[all …]