• Home
  • Raw
  • Download

Lines Matching refs:entry_info

430   EntryInfo& entry_info = entries_.at(entry_index);  in FindEntry()  local
432 return entry_info.id; in FindEntry()
445 EntryInfo& entry_info = entries_.at(entry_index); in FindOrAddEntry() local
446 entry_info.accessed = accessed; in FindOrAddEntry()
449 static_cast<void*>(addr), entry_info.size, size); in FindOrAddEntry()
451 entry_info.size = size; in FindOrAddEntry()
452 return entry_info.id; in FindOrAddEntry()
554 EntryInfo& entry_info = entries_.at(entry_index); in FindUntrackedObjects() local
557 static_cast<int>(entry_info.size))); in FindUntrackedObjects()
558 if (obj->Size() != static_cast<int>(entry_info.size)) in FindUntrackedObjects()
561 CHECK_EQ(obj->Size(), static_cast<int>(entry_info.size)); in FindUntrackedObjects()
608 EntryInfo* entry_info = &entries_.first(); in PushHeapObjectsStats() local
616 EntryInfo* start_entry_info = entry_info; in PushHeapObjectsStats()
617 while (entry_info < end_entry_info && entry_info->id < time_interval_id) { in PushHeapObjectsStats()
618 entries_size += entry_info->size; in PushHeapObjectsStats()
619 ++entry_info; in PushHeapObjectsStats()
622 static_cast<uint32_t>(entry_info - start_entry_info); in PushHeapObjectsStats()
637 DCHECK(entry_info == end_entry_info); in PushHeapObjectsStats()
658 EntryInfo& entry_info = entries_.at(i); in RemoveDeadEntries() local
659 if (entry_info.accessed) { in RemoveDeadEntries()
661 entries_.at(first_free_entry) = entry_info; in RemoveDeadEntries()
665 entry_info.addr, ComputePointerHash(entry_info.addr)); in RemoveDeadEntries()
670 if (entry_info.addr) { in RemoveDeadEntries()
671 entries_map_.Remove(entry_info.addr, in RemoveDeadEntries()
672 ComputePointerHash(entry_info.addr)); in RemoveDeadEntries()