• Home
  • Raw
  • Download

Lines Matching refs:HeapProfiler

15 HeapProfiler::HeapProfiler(Heap* heap)  in HeapProfiler()  function in v8::internal::HeapProfiler
27 HeapProfiler::~HeapProfiler() { in ~HeapProfiler()
33 void HeapProfiler::DeleteAllSnapshots() { in DeleteAllSnapshots()
40 void HeapProfiler::RemoveSnapshot(HeapSnapshot* snapshot) { in RemoveSnapshot()
45 void HeapProfiler::DefineWrapperClass( in DefineWrapperClass()
46 uint16_t class_id, v8::HeapProfiler::WrapperInfoCallback callback) { in DefineWrapperClass()
47 DCHECK(class_id != v8::HeapProfiler::kPersistentHandleNoClassId); in DefineWrapperClass()
56 v8::RetainedObjectInfo* HeapProfiler::ExecuteWrapperClassCallback( in ExecuteWrapperClassCallback()
64 HeapSnapshot* HeapProfiler::TakeSnapshot( in TakeSnapshot()
66 v8::HeapProfiler::ObjectNameResolver* resolver) { in TakeSnapshot()
87 void HeapProfiler::StartHeapObjectsTracking(bool track_allocations) { in StartHeapObjectsTracking()
100 SnapshotObjectId HeapProfiler::PushHeapObjectsStats(OutputStream* stream, in PushHeapObjectsStats()
106 void HeapProfiler::StopHeapObjectsTracking() { in StopHeapObjectsTracking()
115 size_t HeapProfiler::GetMemorySizeUsedByProfiler() { in GetMemorySizeUsedByProfiler()
127 int HeapProfiler::GetSnapshotsCount() { in GetSnapshotsCount()
132 HeapSnapshot* HeapProfiler::GetSnapshot(int index) { in GetSnapshot()
137 SnapshotObjectId HeapProfiler::GetSnapshotObjectId(Handle<Object> obj) { in GetSnapshotObjectId()
139 return v8::HeapProfiler::kUnknownObjectId; in GetSnapshotObjectId()
144 void HeapProfiler::ObjectMoveEvent(Address from, Address to, int size) { in ObjectMoveEvent()
153 void HeapProfiler::AllocationEvent(Address addr, int size) { in AllocationEvent()
161 void HeapProfiler::UpdateObjectSizeEvent(Address addr, int size) { in UpdateObjectSizeEvent()
166 void HeapProfiler::SetRetainedObjectInfo(UniqueId id, in SetRetainedObjectInfo()
173 Handle<HeapObject> HeapProfiler::FindHeapObjectById(SnapshotObjectId id) { in FindHeapObjectById()
190 void HeapProfiler::ClearHeapObjectMap() { in ClearHeapObjectMap()
196 Heap* HeapProfiler::heap() const { return ids_->heap(); } in heap()