• Home
  • Raw
  • Download

Lines Matching refs:HeapProfiler

7987 HeapProfiler* Isolate::GetHeapProfiler() {  in GetHeapProfiler()
7988 i::HeapProfiler* heap_profiler = in GetHeapProfiler()
7990 return reinterpret_cast<HeapProfiler*>(heap_profiler); in GetHeapProfiler()
9930 HeapProfiler::kUnknownObjectId;
9933 int HeapProfiler::GetSnapshotCount() { in GetSnapshotCount()
9934 return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotsCount(); in GetSnapshotCount()
9938 const HeapSnapshot* HeapProfiler::GetHeapSnapshot(int index) { in GetHeapSnapshot()
9940 reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshot(index)); in GetHeapSnapshot()
9944 SnapshotObjectId HeapProfiler::GetObjectId(Local<Value> value) { in GetObjectId()
9946 return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotObjectId(obj); in GetObjectId()
9950 Local<Value> HeapProfiler::FindObjectById(SnapshotObjectId id) { in FindObjectById()
9952 reinterpret_cast<i::HeapProfiler*>(this)->FindHeapObjectById(id); in FindObjectById()
9958 void HeapProfiler::ClearObjectIds() { in ClearObjectIds()
9959 reinterpret_cast<i::HeapProfiler*>(this)->ClearHeapObjectMap(); in ClearObjectIds()
9963 const HeapSnapshot* HeapProfiler::TakeHeapSnapshot( in TakeHeapSnapshot()
9966 reinterpret_cast<i::HeapProfiler*>(this) in TakeHeapSnapshot()
9971 void HeapProfiler::StartTrackingHeapObjects(bool track_allocations) { in StartTrackingHeapObjects()
9972 reinterpret_cast<i::HeapProfiler*>(this)->StartHeapObjectsTracking( in StartTrackingHeapObjects()
9977 void HeapProfiler::StopTrackingHeapObjects() { in StopTrackingHeapObjects()
9978 reinterpret_cast<i::HeapProfiler*>(this)->StopHeapObjectsTracking(); in StopTrackingHeapObjects()
9982 SnapshotObjectId HeapProfiler::GetHeapStats(OutputStream* stream, in GetHeapStats()
9984 i::HeapProfiler* heap_profiler = reinterpret_cast<i::HeapProfiler*>(this); in GetHeapStats()
9988 bool HeapProfiler::StartSamplingHeapProfiler(uint64_t sample_interval, in StartSamplingHeapProfiler()
9991 return reinterpret_cast<i::HeapProfiler*>(this)->StartSamplingHeapProfiler( in StartSamplingHeapProfiler()
9996 void HeapProfiler::StopSamplingHeapProfiler() { in StopSamplingHeapProfiler()
9997 reinterpret_cast<i::HeapProfiler*>(this)->StopSamplingHeapProfiler(); in StopSamplingHeapProfiler()
10001 AllocationProfile* HeapProfiler::GetAllocationProfile() { in GetAllocationProfile()
10002 return reinterpret_cast<i::HeapProfiler*>(this)->GetAllocationProfile(); in GetAllocationProfile()
10006 void HeapProfiler::DeleteAllHeapSnapshots() { in DeleteAllHeapSnapshots()
10007 reinterpret_cast<i::HeapProfiler*>(this)->DeleteAllSnapshots(); in DeleteAllHeapSnapshots()
10011 void HeapProfiler::SetWrapperClassInfoProvider(uint16_t class_id, in SetWrapperClassInfoProvider()
10013 reinterpret_cast<i::HeapProfiler*>(this)->DefineWrapperClass(class_id, in SetWrapperClassInfoProvider()
10017 void HeapProfiler::SetGetRetainerInfosCallback( in SetGetRetainerInfosCallback()
10019 reinterpret_cast<i::HeapProfiler*>(this)->SetGetRetainerInfosCallback( in SetGetRetainerInfosCallback()
10023 size_t HeapProfiler::GetProfilerMemorySize() { in GetProfilerMemorySize()
10024 return reinterpret_cast<i::HeapProfiler*>(this)-> in GetProfilerMemorySize()
10029 void HeapProfiler::SetRetainedObjectInfo(UniqueId id, in SetRetainedObjectInfo()
10031 reinterpret_cast<i::HeapProfiler*>(this)->SetRetainedObjectInfo(id, info); in SetRetainedObjectInfo()