Lines Matching refs:ids_
18 : ids_(new HeapObjectsMap(heap)), in HeapProfiler()
106 ids_->RemoveDeadEntries(); in TakeSnapshot()
142 ids_->UpdateHeapObjectsMap(); in StartHeapObjectsTracking()
146 allocation_tracker_.reset(new AllocationTracker(ids_.get(), names_.get())); in StartHeapObjectsTracking()
155 return ids_->PushHeapObjectsStats(stream, timestamp_us); in PushHeapObjectsStats()
159 ids_->StopHeapObjectsTracking(); in StopHeapObjectsTracking()
177 return ids_->FindEntry(HeapObject::cast(*obj)->address()); in GetSnapshotObjectId()
182 bool known_object = ids_->MoveObject(from, to, size); in ObjectMoveEvent()
197 ids_->UpdateObjectSize(addr, size); in UpdateObjectSizeEvent()
206 if (ids_->FindEntry(obj->address()) == id) { in FindHeapObjectById()
218 ids_.reset(new HeapObjectsMap(heap())); in ClearHeapObjectMap()
223 Heap* HeapProfiler::heap() const { return ids_->heap(); } in heap()