• Home
  • Raw
  • Download

Lines Matching full:params

109 …std::unique_ptr<AddInspectedHeapObjectParams> params = AddInspectedHeapObjectParams::Create(reques…  in AddInspectedHeapObject()  local
110 if (params == nullptr) { in AddInspectedHeapObject()
111 SendResponse(request, DispatchResponse::Fail("wrong params")); in AddInspectedHeapObject()
114 DispatchResponse response = heapprofiler_->AddInspectedHeapObject(*params); in AddInspectedHeapObject()
140 …std::unique_ptr<GetHeapObjectIdParams> params = GetHeapObjectIdParams::Create(request.GetParams()); in GetHeapObjectId() local
141 if (params == nullptr) { in GetHeapObjectId()
142 SendResponse(request, DispatchResponse::Fail("wrong params")); in GetHeapObjectId()
147 DispatchResponse response = heapprofiler_->GetHeapObjectId(*params, &objectId); in GetHeapObjectId()
154 …std::unique_ptr<GetObjectByHeapObjectIdParams> params = GetObjectByHeapObjectIdParams::Create(requ… in GetObjectByHeapObjectId() local
155 if (params == nullptr) { in GetObjectByHeapObjectId()
156 SendResponse(request, DispatchResponse::Fail("wrong params")); in GetObjectByHeapObjectId()
161 … DispatchResponse response = heapprofiler_->GetObjectByHeapObjectId(*params, &remoteObjectResult); in GetObjectByHeapObjectId()
187 std::unique_ptr<StartSamplingParams> params = StartSamplingParams::Create(request.GetParams()); in StartSampling() local
188 if (params == nullptr) { in StartSampling()
189 SendResponse(request, DispatchResponse::Fail("wrong params")); in StartSampling()
192 DispatchResponse response = heapprofiler_->StartSampling(*params); in StartSampling()
211 std::unique_ptr<StartTrackingHeapObjectsParams> params = in StartTrackingHeapObjects() local
213 if (params == nullptr) { in StartTrackingHeapObjects()
214 SendResponse(request, DispatchResponse::Fail("wrong params")); in StartTrackingHeapObjects()
217 DispatchResponse response = heapprofiler_->StartTrackingHeapObjects(*params); in StartTrackingHeapObjects()
223 …std::unique_ptr<StopTrackingHeapObjectsParams> params = StopTrackingHeapObjectsParams::Create(requ… in StopTrackingHeapObjects() local
224 if (params == nullptr) { in StopTrackingHeapObjects()
225 SendResponse(request, DispatchResponse::Fail("wrong params")); in StopTrackingHeapObjects()
228 DispatchResponse response = heapprofiler_->StopTrackingHeapObjects(*params); in StopTrackingHeapObjects()
234 …std::unique_ptr<StopTrackingHeapObjectsParams> params = StopTrackingHeapObjectsParams::Create(requ… in TakeHeapSnapshot() local
235 if (params == nullptr) { in TakeHeapSnapshot()
236 SendResponse(request, DispatchResponse::Fail("wrong params")); in TakeHeapSnapshot()
239 DispatchResponse response = heapprofiler_->TakeHeapSnapshot(*params); in TakeHeapSnapshot()
319 …apProfilerImpl::AddInspectedHeapObject([[maybe_unused]] const AddInspectedHeapObjectParams &params) in AddInspectedHeapObject() argument
342 …tchResponse HeapProfilerImpl::GetHeapObjectId([[maybe_unused]] const GetHeapObjectIdParams &params, in GetHeapObjectId() argument
350 …ProfilerImpl::GetObjectByHeapObjectId([[maybe_unused]] const GetObjectByHeapObjectIdParams &params, in GetObjectByHeapObjectId() argument
366 DispatchResponse HeapProfilerImpl::StartSampling([[maybe_unused]] const StartSamplingParams &params) in StartSampling() argument
369 uint64_t samplingInterval = static_cast<uint64_t>(params.GetSamplingInterval()); in StartSampling()
388 …chResponse HeapProfilerImpl::StartTrackingHeapObjects(const StartTrackingHeapObjectsParams &params) in StartTrackingHeapObjects() argument
394 bool traceAllocation = params.GetTrackAllocations(); in StartTrackingHeapObjects()
427 …atchResponse HeapProfilerImpl::StopTrackingHeapObjects(const StopTrackingHeapObjectsParams &params) in StopTrackingHeapObjects() argument
431 if (params.GetReportProgress()) { in StopTrackingHeapObjects()
445 DispatchResponse HeapProfilerImpl::TakeHeapSnapshot(const StopTrackingHeapObjectsParams &params) in TakeHeapSnapshot() argument
447 bool captureNumericValue = params.GetCaptureNumericValue(); in TakeHeapSnapshot()
453 if (params.GetReportProgress()) { in TakeHeapSnapshot()