Lines Matching refs:recent_allocation_records_
188 AllocRecord* Dbg::recent_allocation_records_ PT_GUARDED_BY(gAllocTrackerLock) = NULL; // TODO: CircularBuffer<AllocRecord>
3480 if (recent_allocation_records_ == NULL) {
3486 recent_allocation_records_ = new AllocRecord[gAllocRecordMax];
3487 CHECK(recent_allocation_records_ != NULL);
3490 delete[] recent_allocation_records_;
3491 recent_allocation_records_ = NULL;
3532 if (recent_allocation_records_ == NULL) {
3542 AllocRecord* record = &recent_allocation_records_[gAllocRecordHead];
3571 if (recent_allocation_records_ == NULL) {
3583 AllocRecord* record = &recent_allocation_records_[i];
3702 AllocRecord* record = &recent_allocation_records_[idx];
3757 AllocRecord* record = &recent_allocation_records_[idx];