• Home
  • Raw
  • Download

Lines Matching refs:HeapProfiler

8360 HeapProfiler* Isolate::GetHeapProfiler() {  in GetHeapProfiler()
8361 i::HeapProfiler* heap_profiler = in GetHeapProfiler()
8363 return reinterpret_cast<HeapProfiler*>(heap_profiler); in GetHeapProfiler()
10187 HeapProfiler::kUnknownObjectId;
10189 int HeapProfiler::GetSnapshotCount() { in GetSnapshotCount()
10190 return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotsCount(); in GetSnapshotCount()
10193 const HeapSnapshot* HeapProfiler::GetHeapSnapshot(int index) { in GetHeapSnapshot()
10195 reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshot(index)); in GetHeapSnapshot()
10198 SnapshotObjectId HeapProfiler::GetObjectId(Local<Value> value) { in GetObjectId()
10200 return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotObjectId(obj); in GetObjectId()
10203 SnapshotObjectId HeapProfiler::GetObjectId(NativeObject value) { in GetObjectId()
10204 return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotObjectId(value); in GetObjectId()
10207 Local<Value> HeapProfiler::FindObjectById(SnapshotObjectId id) { in FindObjectById()
10209 reinterpret_cast<i::HeapProfiler*>(this)->FindHeapObjectById(id); in FindObjectById()
10214 void HeapProfiler::ClearObjectIds() { in ClearObjectIds()
10215 reinterpret_cast<i::HeapProfiler*>(this)->ClearHeapObjectMap(); in ClearObjectIds()
10218 const HeapSnapshot* HeapProfiler::TakeHeapSnapshot( in TakeHeapSnapshot()
10222 reinterpret_cast<i::HeapProfiler*>(this)->TakeSnapshot( in TakeHeapSnapshot()
10227 void HeapProfiler::StartTrackingHeapObjects(bool track_allocations) { in StartTrackingHeapObjects()
10228 reinterpret_cast<i::HeapProfiler*>(this)->StartHeapObjectsTracking( in StartTrackingHeapObjects()
10232 void HeapProfiler::StopTrackingHeapObjects() { in StopTrackingHeapObjects()
10233 reinterpret_cast<i::HeapProfiler*>(this)->StopHeapObjectsTracking(); in StopTrackingHeapObjects()
10236 SnapshotObjectId HeapProfiler::GetHeapStats(OutputStream* stream, in GetHeapStats()
10238 i::HeapProfiler* heap_profiler = reinterpret_cast<i::HeapProfiler*>(this); in GetHeapStats()
10242 bool HeapProfiler::StartSamplingHeapProfiler(uint64_t sample_interval, in StartSamplingHeapProfiler()
10245 return reinterpret_cast<i::HeapProfiler*>(this)->StartSamplingHeapProfiler( in StartSamplingHeapProfiler()
10249 void HeapProfiler::StopSamplingHeapProfiler() { in StopSamplingHeapProfiler()
10250 reinterpret_cast<i::HeapProfiler*>(this)->StopSamplingHeapProfiler(); in StopSamplingHeapProfiler()
10253 AllocationProfile* HeapProfiler::GetAllocationProfile() { in GetAllocationProfile()
10254 return reinterpret_cast<i::HeapProfiler*>(this)->GetAllocationProfile(); in GetAllocationProfile()
10257 void HeapProfiler::DeleteAllHeapSnapshots() { in DeleteAllHeapSnapshots()
10258 reinterpret_cast<i::HeapProfiler*>(this)->DeleteAllSnapshots(); in DeleteAllHeapSnapshots()
10261 void HeapProfiler::AddBuildEmbedderGraphCallback( in AddBuildEmbedderGraphCallback()
10263 reinterpret_cast<i::HeapProfiler*>(this)->AddBuildEmbedderGraphCallback( in AddBuildEmbedderGraphCallback()
10267 void HeapProfiler::RemoveBuildEmbedderGraphCallback( in RemoveBuildEmbedderGraphCallback()
10269 reinterpret_cast<i::HeapProfiler*>(this)->RemoveBuildEmbedderGraphCallback( in RemoveBuildEmbedderGraphCallback()
10273 void HeapProfiler::SetGetDetachednessCallback(GetDetachednessCallback callback, in SetGetDetachednessCallback()
10275 reinterpret_cast<i::HeapProfiler*>(this)->SetGetDetachednessCallback(callback, in SetGetDetachednessCallback()