• Home
  • Raw
  • Download

Lines Matching refs:params

314     std::unique_ptr<EnableParams> params = EnableParams::Create(request.GetParams());  in Enable()  local
315 if (params == nullptr) { in Enable()
321 DispatchResponse response = debugger_->Enable(*params, &id); in Enable()
335 …std::unique_ptr<EvaluateOnCallFrameParams> params = EvaluateOnCallFrameParams::Create(request.GetP… in EvaluateOnCallFrame() local
336 if (params == nullptr) { in EvaluateOnCallFrame()
341 DispatchResponse response = debugger_->EvaluateOnCallFrame(*params, &result1); in EvaluateOnCallFrame()
353 …std::unique_ptr<GetPossibleBreakpointsParams> params = GetPossibleBreakpointsParams::Create(reques… in GetPossibleBreakpoints() local
354 if (params == nullptr) { in GetPossibleBreakpoints()
359 DispatchResponse response = debugger_->GetPossibleBreakpoints(*params, &locations); in GetPossibleBreakpoints()
366 …std::unique_ptr<GetScriptSourceParams> params = GetScriptSourceParams::Create(request.GetParams()); in GetScriptSource() local
367 if (params == nullptr) { in GetScriptSource()
372 DispatchResponse response = debugger_->GetScriptSource(*params, &source); in GetScriptSource()
385 …std::unique_ptr<RemoveBreakpointParams> params = RemoveBreakpointParams::Create(request.GetParams(… in RemoveBreakpoint() local
386 if (params == nullptr) { in RemoveBreakpoint()
390 DispatchResponse response = debugger_->RemoveBreakpoint(*params); in RemoveBreakpoint()
396 std::unique_ptr<ResumeParams> params = ResumeParams::Create(request.GetParams()); in Resume() local
397 if (params == nullptr) { in Resume()
401 DispatchResponse response = debugger_->Resume(*params); in Resume()
413 …std::unique_ptr<SetBreakpointByUrlParams> params = SetBreakpointByUrlParams::Create(request.GetPar… in SetBreakpointByUrl() local
414 if (params == nullptr) { in SetBreakpointByUrl()
421 DispatchResponse response = debugger_->SetBreakpointByUrl(*params, &outId, &outLocations); in SetBreakpointByUrl()
428 std::unique_ptr<GetPossibleAndSetBreakpointParams> params; in GetPossibleAndSetBreakpointByUrl() local
429 params = GetPossibleAndSetBreakpointParams::Create(request.GetParams()); in GetPossibleAndSetBreakpointByUrl()
430 if (params == nullptr) { in GetPossibleAndSetBreakpointByUrl()
436 DispatchResponse response = debugger_->GetPossibleAndSetBreakpointByUrl(*params, outLoc); in GetPossibleAndSetBreakpointByUrl()
443 …std::unique_ptr<SetPauseOnExceptionsParams> params = SetPauseOnExceptionsParams::Create(request.Ge… in SetPauseOnExceptions() local
444 if (params == nullptr) { in SetPauseOnExceptions()
449 DispatchResponse response = debugger_->SetPauseOnExceptions(*params); in SetPauseOnExceptions()
455 std::unique_ptr<StepIntoParams> params = StepIntoParams::Create(request.GetParams()); in StepInto() local
456 if (params == nullptr) { in StepInto()
460 DispatchResponse response = debugger_->StepInto(*params); in StepInto()
472 std::unique_ptr<StepOverParams> params = StepOverParams::Create(request.GetParams()); in StepOver() local
473 if (params == nullptr) { in StepOver()
477 DispatchResponse response = debugger_->StepOver(*params); in StepOver()
483 std::unique_ptr<SetMixedDebugParams> params = SetMixedDebugParams::Create(request.GetParams()); in SetMixedDebugEnabled() local
484 if (params == nullptr) { in SetMixedDebugEnabled()
488 DispatchResponse response = debugger_->SetMixedDebugEnabled(*params); in SetMixedDebugEnabled()
494 …std::unique_ptr<ReplyNativeCallingParams> params = ReplyNativeCallingParams::Create(request.GetPar… in ReplyNativeCalling() local
495 if (params == nullptr) { in ReplyNativeCalling()
499 DispatchResponse response = debugger_->ReplyNativeCalling(*params); in ReplyNativeCalling()
511 std::unique_ptr<DropFrameParams> params = DropFrameParams::Create(request.GetParams()); in DropFrame() local
512 if (params == nullptr) { in DropFrame()
516 DispatchResponse response = debugger_->DropFrame(*params); in DropFrame()
611 DispatchResponse DebuggerImpl::Enable([[maybe_unused]] const EnableParams &params, UniqueDebuggerId… in Enable() argument
633 DispatchResponse DebuggerImpl::EvaluateOnCallFrame(const EvaluateOnCallFrameParams &params, in EvaluateOnCallFrame() argument
636 CallFrameId callFrameId = params.GetCallFrameId(); in EvaluateOnCallFrame()
637 const std::string &expression = params.GetExpression(); in EvaluateOnCallFrame()
670 DispatchResponse DebuggerImpl::GetPossibleBreakpoints(const GetPossibleBreakpointsParams &params, in GetPossibleBreakpoints() argument
673 Location *start = params.GetStart(); in GetPossibleBreakpoints()
698 DispatchResponse DebuggerImpl::GetScriptSource(const GetScriptSourceParams &params, std::string *so… in GetScriptSource() argument
700 ScriptId scriptId = params.GetScriptId(); in GetScriptSource()
717 DispatchResponse DebuggerImpl::RemoveBreakpoint(const RemoveBreakpointParams &params) in RemoveBreakpoint() argument
719 std::string id = params.GetBreakpointId(); in RemoveBreakpoint()
754 DispatchResponse DebuggerImpl::Resume([[maybe_unused]] const ResumeParams &params) in Resume() argument
769 DispatchResponse DebuggerImpl::SetBreakpointByUrl(const SetBreakpointByUrlParams &params, in SetBreakpointByUrl() argument
776 const std::string &url = params.GetUrl(); in SetBreakpointByUrl()
777 int32_t lineNumber = params.GetLine(); in SetBreakpointByUrl()
778 int32_t columnNumber = params.GetColumn(); in SetBreakpointByUrl()
779 auto condition = params.HasCondition() ? params.GetCondition() : std::optional<std::string> {}; in SetBreakpointByUrl()
832 …nse DebuggerImpl::GetPossibleAndSetBreakpointByUrl(const GetPossibleAndSetBreakpointParams &params, in GetPossibleAndSetBreakpointByUrl() argument
838 if (!params.HasBreakpointsList()) { in GetPossibleAndSetBreakpointByUrl()
841 auto breakpointList = params.GetBreakpointsList(); in GetPossibleAndSetBreakpointByUrl()
914 DispatchResponse DebuggerImpl::SetPauseOnExceptions(const SetPauseOnExceptionsParams &params) in SetPauseOnExceptions() argument
916 pauseOnException_ = params.GetState(); in SetPauseOnExceptions()
920 DispatchResponse DebuggerImpl::StepInto([[maybe_unused]] const StepIntoParams &params) in StepInto() argument
950 DispatchResponse DebuggerImpl::StepOver([[maybe_unused]] const StepOverParams &params) in StepOver() argument
970 …atchResponse DebuggerImpl::SetMixedDebugEnabled([[maybe_unused]] const SetMixedDebugParams &params) in SetMixedDebugEnabled() argument
972 vm_->GetJsDebuggerManager()->SetMixedDebugEnabled(params.GetEnabled()); in SetMixedDebugEnabled()
976 …hResponse DebuggerImpl::ReplyNativeCalling([[maybe_unused]] const ReplyNativeCallingParams &params) in ReplyNativeCalling() argument
979 if (params.GetUserCode()) { in ReplyNativeCalling()
985 DispatchResponse DebuggerImpl::DropFrame(const DropFrameParams &params) in DropFrame() argument
991 if (params.HasDroppedDepth()) { in DropFrame()
992 droppedDepth = params.GetDroppedDepth(); in DropFrame()