Lines Matching refs:recent_allocation_records_
188 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()
3702 AllocRecord* record = &recent_allocation_records_[idx]; in GetRecentAllocations()
3757 AllocRecord* record = &recent_allocation_records_[idx]; in GetRecentAllocations()