Home
last modified time | relevance | path

Searched defs:debugger (Results 1 – 14 of 14) 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
Ddebugger_commands_test.cpp65 std::unique_ptr<JSDebugger> debugger = std::make_unique<JSDebugger>(ecmaVm); in HWTEST_F_L0() local
/arkcompiler/toolchain/tooling/backend/
Djs_pt_hooks.h30 explicit JSPtHooks(DebuggerImpl *debugger) : debugger_(debugger) {} in JSPtHooks()
/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/backendbreakpoint_fuzzer/
Dbackendbreakpoint_fuzzer.cpp52 auto debugger = std::make_unique<DebuggerImpl>(vm, nullptr, nullptr); in BackendBreakpointFuzzTest() 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/backendnativecalling_fuzzer/
Dbackendnativecalling_fuzzer.cpp52 auto debugger = std::make_unique<DebuggerImpl>(vm, nullptr, nullptr); in BackendNativeCallingFuzzTest() 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/tooling/agent/
Ddebugger_impl.h145 DispatcherImpl(ProtocolChannel *channel, std::unique_ptr<DebuggerImpl> debugger) in DispatcherImpl()
/arkcompiler/toolchain/tooling/
Ddispatcher.cpp158 auto debugger = std::make_unique<DebuggerImpl>(vm, channel, runtime.get()); in Dispatcher() local
/arkcompiler/runtime_core/static_core/runtime/tests/
Ddebugger_test.cpp28 namespace panda::debugger::test { namespace
/arkcompiler/ets_runtime/ecmascript/debugger/
Ddebugger_api.cpp261 void DebuggerApi::DestroyJSDebugger(JSDebugger *debugger) in DestroyJSDebugger()
266 void DebuggerApi::RegisterHooks(JSDebugger *debugger, PtHooks *hooks) in RegisterHooks()
271 bool DebuggerApi::SetBreakpoint(JSDebugger *debugger, const JSPtLocation &location, in SetBreakpoint()
277 bool DebuggerApi::RemoveBreakpoint(JSDebugger *debugger, const JSPtLocation &location) in RemoveBreakpoint()
282 void DebuggerApi::RemoveAllBreakpoints(JSDebugger *debugger) in RemoveAllBreakpoints()
287 void DebuggerApi::SetSingleStepStatus(JSDebugger *debugger, bool status) in SetSingleStepStatus()
292 bool DebuggerApi::GetSingleStepStatus(JSDebugger *debugger) in GetSingleStepStatus()
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dinspector.cpp36 Inspector::Inspector(Server &server, DebugInterface &debugger, bool breakOnStart) in Inspector()
/arkcompiler/ets_frontend/ts2panda/src/
Dpandagen.ts858 debugger(node: ts.Node): void { method in PandaGen