Home
last modified time | relevance | path

Searched defs:debugger (Results 1 – 19 of 19) sorted by relevance

/arkcompiler/toolchain/tooling/test/
Djs_pt_hooks_test.cpp63 auto debugger = std::make_unique<DebuggerImpl>(ecmaVm, nullptr, nullptr); in HWTEST_F_L0() local
74 auto debugger = std::make_unique<DebuggerImpl>(ecmaVm, nullptr, nullptr); in HWTEST_F_L0() local
82 auto debugger = std::make_unique<DebuggerImpl>(ecmaVm, nullptr, nullptr); in HWTEST_F_L0() local
93 auto debugger = std::make_unique<DebuggerImpl>(ecmaVm, nullptr, nullptr); in HWTEST_F_L0() local
103 auto debugger = std::make_unique<DebuggerImpl>(ecmaVm, nullptr, nullptr); in HWTEST_F_L0() local
111 auto debugger = std::make_unique<DebuggerImpl>(ecmaVm, nullptr, nullptr); in HWTEST_F_L0() local
119 auto debugger = std::make_unique<DebuggerImpl>(ecmaVm, nullptr, nullptr); in HWTEST_F_L0() local
127 auto debugger = std::make_unique<DebuggerImpl>(ecmaVm, nullptr, nullptr); in HWTEST_F_L0() local
Ddebugger_commands_test.cpp65 std::unique_ptr<JSDebugger> debugger = std::make_unique<JSDebugger>(ecmaVm); in HWTEST_F_L0() local
Ddebugger_impl_test.cpp1676 auto debugger = std::make_unique<DebuggerImplFriendTest>(debuggerImpl); in HWTEST_F_L0() local
1700 auto debugger = std::make_unique<DebuggerImplFriendTest>(debuggerImpl); in HWTEST_F_L0() local
1724 auto debugger = std::make_unique<DebuggerImplFriendTest>(debuggerImpl); in HWTEST_F_L0() local
1748 auto debugger = std::make_unique<DebuggerImplFriendTest>(debuggerImpl); in HWTEST_F_L0() local
1772 auto debugger = std::make_unique<DebuggerImplFriendTest>(debuggerImpl); in HWTEST_F_L0() local
1796 auto debugger = std::make_unique<DebuggerImplFriendTest>(debuggerImpl); in HWTEST_F_L0() local
1813 auto debugger = std::make_unique<DebuggerImplFriendTest>(debuggerImpl); in HWTEST_F_L0() local
1832 auto debugger = std::make_unique<DebuggerImplFriendTest>(debuggerImpl); in HWTEST_F_L0() local
/arkcompiler/toolchain/tooling/backend/
Djs_pt_hooks.h30 explicit JSPtHooks(DebuggerImpl *debugger) : debugger_(debugger) {} in JSPtHooks()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/debugger/src/overwrites/
Dcdp_debugger_callframe_from_json.py20 import cdp.debugger as debugger namespace
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/evaluation/
Devaluation_engine.h41 explicit PtThreadEvaluationEngine(DebugInterface *debugger, ManagedThread *thread) in PtThreadEvaluationEngine()
/arkcompiler/toolchain/test/fuzztest/backend/backendsinglestep_fuzzer/
Dbackendsinglestep_fuzzer.cpp52 auto debugger = std::make_unique<DebuggerImpl>(vm, nullptr, nullptr); in BackendSingleStepFuzzTest() local
/arkcompiler/toolchain/test/fuzztest/backend/backendloadmodule_fuzzer/
Dbackendloadmodule_fuzzer.cpp52 auto debugger = std::make_unique<DebuggerImpl>(vm, nullptr, nullptr); in BackendLoadModuleFuzzTest() local
/arkcompiler/toolchain/test/fuzztest/backend/backendexception_fuzzer/
Dbackendexception_fuzzer.cpp52 auto debugger = std::make_unique<DebuggerImpl>(vm, nullptr, nullptr); in BackendExceptionFuzzTest() local
/arkcompiler/toolchain/test/fuzztest/backend/backendnativecalling_fuzzer/
Dbackendnativecalling_fuzzer.cpp52 auto debugger = std::make_unique<DebuggerImpl>(vm, nullptr, nullptr); in BackendNativeCallingFuzzTest() local
/arkcompiler/toolchain/test/fuzztest/backend/backendbreakpoint_fuzzer/
Dbackendbreakpoint_fuzzer.cpp52 auto debugger = std::make_unique<DebuggerImpl>(vm, nullptr, nullptr); in BackendBreakpointFuzzTest() local
/arkcompiler/ets_runtime/ecmascript/debugger/tests/
Djs_debugger_test.cpp86 JSDebugger debugger(ecmaVm); in HWTEST_F_L0() local
118 JSDebugger debugger(ecmaVm); in HWTEST_F_L0() local
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Ddebugger_api.cpp56 auto &debugger = Runtime::GetCurrent()->StartDebugSession()->GetDebugger(); in DebuggerAPIGetLocal() local
139 auto &debugger = Runtime::GetCurrent()->StartDebugSession()->GetDebugger(); in DebuggerAPISetLocal() local
/arkcompiler/toolchain/tooling/
Ddispatcher.cpp154 auto debugger = std::make_unique<DebuggerImpl>(vm, channel, runtime.get()); in Dispatcher() local
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp249 void DebuggerApi::DestroyJSDebugger(JSDebugger *debugger) in DestroyJSDebugger()
254 void DebuggerApi::RegisterHooks(JSDebugger *debugger, PtHooks *hooks) in RegisterHooks()
259 bool DebuggerApi::SetBreakpoint(JSDebugger *debugger, const JSPtLocation &location, in SetBreakpoint()
268 bool DebuggerApi::RemoveBreakpoint(JSDebugger *debugger, const JSPtLocation &location) in RemoveBreakpoint()
273 void DebuggerApi::RemoveAllBreakpoints(JSDebugger *debugger) in RemoveAllBreakpoints()
278 void DebuggerApi::SetSingleStepStatus(JSDebugger *debugger, bool status) in SetSingleStepStatus()
283 bool DebuggerApi::GetSingleStepStatus(JSDebugger *debugger) in GetSingleStepStatus()
338 bool DebuggerApi::RemoveBreakpointsByUrl(JSDebugger *debugger, const std::string &url) in RemoveBreakpointsByUrl()
343 void DebuggerApi::DisableFirstTimeFlag(JSDebugger *debugger) in DisableFirstTimeFlag()
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.h149 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<DebuggerImpl> debugger) in DispatcherImpl()
/arkcompiler/runtime_core/static_core/runtime/tests/
Ddebugger_test.cpp28 namespace ark::debugger::test { namespace
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Ddebuggable_thread.cpp22 DebuggableThread::DebuggableThread(ManagedThread *thread, DebugInterface *debugger, SuspensionCallb… in DebuggableThread()
Dinspector.cpp42 Inspector::Inspector(Server &server, DebugInterface &debugger, bool breakOnStart) in Inspector()