Home
last modified time | relevance | path

Searched refs:DebugInterface (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/
Dinspector.h42 class DebugInterface; variable
50 Inspector(Server &server, DebugInterface &debugger, bool breakOnStart);
107 DebugInterface &debugger_;
Dinit.cpp28 class DebugInterface;
Dinspector.cpp36 Inspector::Inspector(Server &server, DebugInterface &debugger, bool breakOnStart) in Inspector()
/arkcompiler/runtime_core/static_core/runtime/include/tooling/
Ddebug_interface.h425 class DebugInterface {
427 DebugInterface() = default;
508 virtual ~DebugInterface() = default;
595 NO_COPY_SEMANTIC(DebugInterface);
596 NO_MOVE_SEMANTIC(DebugInterface);
/arkcompiler/runtime_core/static_core/runtime/include/
Druntime.h92 tooling::DebugInterface &GetDebugger();
98 PandaUniquePtr<tooling::DebugInterface> debugger_;
/arkcompiler/runtime_core/docs/
Druntime-debug-api.md23 …r`](../runtime/tooling/debugger.h) object that implements [`tooling::DebugInterface`](../runtime/i…
/arkcompiler/runtime_core/static_core/docs/
Druntime-debug-api.md23 …r`](../runtime/tooling/debugger.h) object that implements [`tooling::DebugInterface`](../runtime/i…
Dinspector.md57 Inspector utilizes the runtime instrumentation capabilities with the help of a `DebugInterface` obj…
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
Dapi_test.h150 DebugInterface *debugInterface {nullptr};
Dtest_runner.h269 DebugInterface *debugInterface_;
Dtest_util.h173 static bool GetUserThreadList(DebugInterface *debugInterface, PandaVector<PtThread> *threadList) in GetUserThreadList()
/arkcompiler/runtime_core/static_core/runtime/tooling/
Ddebugger.h127 class Debugger : public DebugInterface, RuntimeListener {
/arkcompiler/runtime_core/static_core/runtime/
Druntime.cpp183 tooling::DebugInterface &Runtime::DebugSession::GetDebugger() in GetDebugger()