/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | thread_state.h | 52 BreakpointId SetBreakpoint(const std::vector<PtLocation> &locations);
|
H A D | inspector.cpp | 81 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 D | debuggable_thread.cpp | 96 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 D | debuggable_thread.h | 84 BreakpointId SetBreakpoint(const std::vector<PtLocation> &locations);
|
H A D | inspector.h | 81 std::optional<BreakpointId> SetBreakpoint(PtThread thread,
|
H A D | thread_state.cpp | 97 BreakpointId ThreadState::SetBreakpoint(const std::vector<PtLocation> &locations) in SetBreakpoint() function in ark::tooling::inspector::ThreadState
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
H A D | js_debugger_interface.h | 135 virtual bool SetBreakpoint(const JSPtLocation &location, Local<FunctionRef> condFuncRef) = 0;
|
H A D | js_debugger.h | 119 bool SetBreakpoint(const JSPtLocation &location, Local<FunctionRef> condFuncRef) override;
|
H A D | js_debugger.cpp | 24 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 D | debugger_api.h | 143 static bool SetBreakpoint(JSDebugger *debugger, const JSPtLocation &location,
|
H A D | debugger_api.cpp | 258 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 D | js_single_step_test.h | 41 auto ret = debugInterface_->SetBreakpoint(locationEnd_, condFuncRef); in JsSingleStepTest()
|
H A D | js_step_over_test.h | 45 auto ret = debugInterface_->SetBreakpoint(iter, condFuncRef); in JsStepOverTest()
|
H A D | js_step_out_test.h | 45 auto ret = debugInterface_->SetBreakpoint(iter, condFuncRef); in JsStepOutTest()
|
H A D | js_step_into_test.h | 47 auto ret = debugInterface_->SetBreakpoint(iter, condFuncRef); in JsStepIntoTest()
|
H A D | js_range_error_test.h | 66 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef); in JsRangeErrorTest()
|
H A D | js_throw_exception_test.h | 69 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef);
in JsThrowExceptionTest()
|
H A D | js_syntax_exception_test.h | 66 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef);
in JsSyntaxExceptionTest()
|
H A D | js_variable_first_test.h | 48 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef); in JsVariableFirstTest()
|
H A D | js_variable_second_test.h | 48 auto ret = debugInterface_->SetBreakpoint(location_, condFuncRef); in JsVariableSecondTest()
|
H A D | js_dropframe_test.h | 64 auto ret = debugInterface_->SetBreakpoint(iter, condFuncRef); in JsDropFrameTest()
|
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/ |
H A D | thread_state.cpp | 146 auto break_id = state.SetBreakpoint(breaks); in TEST_F()
|
/arkcompiler/runtime_core/static_core/runtime/include/tooling/ |
H A D | debug_interface.h | 468 virtual std::optional<Error> SetBreakpoint(const PtLocation &location) = 0;
|
/arkcompiler/runtime_core/static_core/runtime/tooling/ |
H A D | debugger.h | 181 std::optional<Error> SetBreakpoint(const PtLocation &location) override;
|
/arkcompiler/toolchain/tooling/agent/ |
H A D | debugger_impl.cpp | 1288 return DebuggerApi::SetBreakpoint(jsDebugger_, location, condFuncRef, isSmartBreakpoint); in SetBreakpointByUrl() 1364 return DebuggerApi::SetBreakpoint(jsDebugger_, location, funcRef); in ProcessSingleBreakpoint()
|