Lines Matching refs:HeapProfiler
8379 HeapProfiler* Isolate::GetHeapProfiler() {
8380 i::HeapProfiler* heap_profiler =
8382 return reinterpret_cast<HeapProfiler*>(heap_profiler);
10221 HeapProfiler::kUnknownObjectId;
10223 int HeapProfiler::GetSnapshotCount() {
10224 return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotsCount();
10227 const HeapSnapshot* HeapProfiler::GetHeapSnapshot(int index) {
10229 reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshot(index));
10232 SnapshotObjectId HeapProfiler::GetObjectId(Local<Value> value) {
10234 return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotObjectId(obj);
10237 SnapshotObjectId HeapProfiler::GetObjectId(NativeObject value) {
10238 return reinterpret_cast<i::HeapProfiler*>(this)->GetSnapshotObjectId(value);
10241 Local<Value> HeapProfiler::FindObjectById(SnapshotObjectId id) {
10243 reinterpret_cast<i::HeapProfiler*>(this)->FindHeapObjectById(id);
10248 void HeapProfiler::ClearObjectIds() {
10249 reinterpret_cast<i::HeapProfiler*>(this)->ClearHeapObjectMap();
10252 const HeapSnapshot* HeapProfiler::TakeHeapSnapshot(
10256 reinterpret_cast<i::HeapProfiler*>(this)->TakeSnapshot(
10261 void HeapProfiler::StartTrackingHeapObjects(bool track_allocations) {
10262 reinterpret_cast<i::HeapProfiler*>(this)->StartHeapObjectsTracking(
10266 void HeapProfiler::StopTrackingHeapObjects() {
10267 reinterpret_cast<i::HeapProfiler*>(this)->StopHeapObjectsTracking();
10270 SnapshotObjectId HeapProfiler::GetHeapStats(OutputStream* stream,
10272 i::HeapProfiler* heap_profiler = reinterpret_cast<i::HeapProfiler*>(this);
10276 bool HeapProfiler::StartSamplingHeapProfiler(uint64_t sample_interval,
10279 return reinterpret_cast<i::HeapProfiler*>(this)->StartSamplingHeapProfiler(
10283 void HeapProfiler::StopSamplingHeapProfiler() {
10284 reinterpret_cast<i::HeapProfiler*>(this)->StopSamplingHeapProfiler();
10287 AllocationProfile* HeapProfiler::GetAllocationProfile() {
10288 return reinterpret_cast<i::HeapProfiler*>(this)->GetAllocationProfile();
10291 void HeapProfiler::DeleteAllHeapSnapshots() {
10292 reinterpret_cast<i::HeapProfiler*>(this)->DeleteAllSnapshots();
10295 void HeapProfiler::AddBuildEmbedderGraphCallback(
10297 reinterpret_cast<i::HeapProfiler*>(this)->AddBuildEmbedderGraphCallback(
10301 void HeapProfiler::RemoveBuildEmbedderGraphCallback(
10303 reinterpret_cast<i::HeapProfiler*>(this)->RemoveBuildEmbedderGraphCallback(
10307 void HeapProfiler::SetGetDetachednessCallback(GetDetachednessCallback callback,
10309 reinterpret_cast<i::HeapProfiler*>(this)->SetGetDetachednessCallback(callback,