Home
last modified time | relevance | path

Searched refs:SetBreakpoint (Results 1 - 25 of 26) sorted by relevance

12

/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
H A Dthread_state.h52 BreakpointId SetBreakpoint(const std::vector<PtLocation> &locations);
H A Dinspector.cpp81 inspectorServer_.OnCallDebuggerSetBreakpoint(std::bind(&Inspector::SetBreakpoint, this, _1, _2, _3, _4)); in Inspector()
82 inspectorServer_.OnCallDebuggerSetBreakpointByUrl(std::bind(&Inspector::SetBreakpoint, this, _1, _2, _3, _4)); in Inspector()
291 std::optional<BreakpointId> Inspector::SetBreakpoint(PtThread thread, in SetBreakpoint() function in ark::tooling::inspector::Inspector
302 return it->second.SetBreakpoint(locations); in SetBreakpoint()
H A Ddebuggable_thread.cpp96 BreakpointId DebuggableThread::SetBreakpoint(const std::vector<PtLocation> &locations) in SetBreakpoint() function in ark::tooling::inspector::DebuggableThread
99 return state_.SetBreakpoint(locations); in SetBreakpoint()
H A Ddebuggable_thread.h84 BreakpointId SetBreakpoint(const std::vector<PtLocation> &locations);
H A Dinspector.h81 std::optional<BreakpointId> SetBreakpoint(PtThread thread,
H A Dthread_state.cpp97 BreakpointId ThreadState::SetBreakpoint(const std::vector<PtLocation> &locations) in SetBreakpoint() function in ark::tooling::inspector::ThreadState
/arkcompiler/ets_runtime/ecmascript/debugger/
H A Djs_debugger_interface.h135 virtual bool SetBreakpoint(const JSPtLocation &location, Local<FunctionRef> condFuncRef) = 0;
H A Djs_debugger.h119 bool SetBreakpoint(const JSPtLocation &location, Local<FunctionRef> condFuncRef) override;
H A Djs_debugger.cpp24 bool JSDebugger::SetBreakpoint(const JSPtLocation &location, Local<FunctionRef> condFuncRef) in SetBreakpoint() function in panda::ecmascript::tooling::JSDebugger
28 LOG_DEBUGGER(ERROR) << "SetBreakpoint: Cannot find MethodLiteral"; in SetBreakpoint()
33 LOG_DEBUGGER(ERROR) << "SetBreakpoint: Invalid breakpoint location"; in SetBreakpoint()
41 LOG_DEBUGGER(WARN) << "SetBreakpoint: Breakpoint already exists"; in SetBreakpoint()
H A Ddebugger_api.h143 static bool SetBreakpoint(JSDebugger *debugger, const JSPtLocation &location,
H A Ddebugger_api.cpp258 bool DebuggerApi::SetBreakpoint(JSDebugger *debugger, const JSPtLocation &location, in SetBreakpoint() function in panda::ecmascript::tooling::DebuggerApi
264 return debugger->SetBreakpoint(location, condFuncRef); in SetBreakpoint()
/arkcompiler/toolchain/tooling/test/testcases/
H A Djs_single_step_test.h41 auto ret = debugInterface_->SetBreakpoint(locationEnd_, condFuncRef); in JsSingleStepTest()
H A Djs_step_over_test.h45 auto ret = debugInterface_->SetBreakpoint(iter, condFuncRef); in JsStepOverTest()
H A Djs_step_out_test.h45 auto ret = debugInterface_->SetBreakpoint(iter, condFuncRef); in JsStepOutTest()
H A Djs_step_into_test.h47 auto ret = debugInterface_->SetBreakpoint(iter, condFuncRef); in JsStepIntoTest()
H A Djs_range_error_test.h66 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef); in JsRangeErrorTest()
H A Djs_throw_exception_test.h69 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef); in JsThrowExceptionTest()
H A Djs_syntax_exception_test.h66 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef); in JsSyntaxExceptionTest()
H A Djs_variable_first_test.h48 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef); in JsVariableFirstTest()
H A Djs_variable_second_test.h48 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef); in JsVariableSecondTest()
H A Djs_dropframe_test.h64 auto ret = debugInterface_->SetBreakpoint(iter, condFuncRef); in JsDropFrameTest()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/
H A Dthread_state.cpp146 auto break_id = state.SetBreakpoint(breaks); in TEST_F()
/arkcompiler/runtime_core/static_core/runtime/include/tooling/
H A Ddebug_interface.h468 virtual std::optional<Error> SetBreakpoint(const PtLocation &location) = 0;
/arkcompiler/runtime_core/static_core/runtime/tooling/
H A Ddebugger.h181 std::optional<Error> SetBreakpoint(const PtLocation &location) override;
/arkcompiler/toolchain/tooling/agent/
H A Ddebugger_impl.cpp1288 return DebuggerApi::SetBreakpoint(jsDebugger_, location, condFuncRef, isSmartBreakpoint); in SetBreakpointByUrl()
1364 return DebuggerApi::SetBreakpoint(jsDebugger_, location, funcRef); in ProcessSingleBreakpoint()

Completed in 19 milliseconds

12