Lines Matching defs:heapProfiler
92 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
93 DispatchResponse response = heapProfiler->AddInspectedHeapObject(param);
101 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
102 DispatchResponse response = heapProfiler->CollectGarbage();
110 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
111 DispatchResponse response = heapProfiler->Enable();
119 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
120 DispatchResponse response = heapProfiler->Disable();
128 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
131 DispatchResponse response = heapProfiler->GetHeapObjectId(params, &objectId);
139 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
142 DispatchResponse response = heapProfiler->GetObjectByHeapObjectId(*params, &remoteObjectResult);
150 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
152 DispatchResponse response = heapProfiler->GetSamplingProfile(&profile);
160 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
162 DispatchResponse response = heapProfiler->StartSampling(params);
169 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
171 DispatchResponse response = heapProfiler->StopSampling(&profile);
179 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
181 DispatchResponse response = heapProfiler->TakeHeapSnapshot(params);
421 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
422 DispatchResponse response = heapProfiler->StartSampling(params);
424 DispatchResponse result = heapProfiler->GetSamplingProfile(&samplingHeapProfile);
432 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
433 DispatchResponse response = heapProfiler->StartSampling(params);
434 DispatchResponse result = heapProfiler->StartSampling(params);
443 auto heapProfiler = std::make_unique<HeapProfilerImpl>(ecmaVm, channel);
444 DispatchResponse response = heapProfiler->StartSampling(params);
445 DispatchResponse result = heapProfiler->StopSampling(&samplingHeapProfile);