Searched refs:Inspector (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | inspector.cpp | 38 LOG(WARNING, DEBUGGER) << "Inspector method '" << methodName << "' must be called on pause"; in LogDebuggerNotPaused() 41 Inspector::Inspector(Server &server, DebugInterface &debugger, bool breakOnStart) in Inspector() function in ark::tooling::inspector::Inspector 73 inspectorServer_.OnCallDebuggerContinueToLocation(std::bind(&Inspector::ContinueToLocation, this, _1, _2, _3)); in Inspector() 75 std::bind(&Inspector::GetPossibleBreakpoints, this, _1, _2, _3, _4)); in Inspector() 76 inspectorServer_.OnCallDebuggerGetScriptSource(std::bind(&Inspector::GetSourceCode, this, _1)); in Inspector() 77 inspectorServer_.OnCallDebuggerPause(std::bind(&Inspector::Pause, this, _1)); in Inspector() 78 inspectorServer_.OnCallDebuggerRemoveBreakpoint(std::bind(&Inspector::RemoveBreakpoint, this, _1, _2)); in Inspector() 79 inspectorServer_.OnCallDebuggerRestartFrame(std::bind(&Inspector::RestartFrame, this, _1, _2)); in Inspector() 80 inspectorServer_.OnCallDebuggerResume(std::bind(&Inspector in Inspector() [all...] |
H A D | inspector.h | 49 class Inspector final : public PtHooks { 51 Inspector(Server &server, DebugInterface &debugger, bool breakOnStart); 52 ~Inspector() override; 54 NO_COPY_SEMANTIC(Inspector); 55 NO_MOVE_SEMANTIC(Inspector);
|
H A D | init.cpp | 44 static std::optional<ark::tooling::inspector::Inspector> g_inspector;
|
/arkcompiler/toolchain/inspector/ |
H A D | inspector.h | 54 class Inspector { class 56 Inspector() = default; 57 ~Inspector() = default;
|
H A D | inspector.cpp | 63 std::unordered_map<const void*, Inspector*> g_inspectors; 155 LOGW("Inspector already exist!"); in InitializeInspector() 159 Inspector *newInspector = new Inspector(); in InitializeInspector() 167 std::bind(&Inspector::OnMessage, newInspector, std::placeholders::_1)); in InitializeInspector() 260 void Inspector::OnMessage(std::string&& msg) in OnMessage() 301 uint64_t Inspector::GetThreadOrTaskId() in GetThreadOrTaskId()
|
Completed in 3 milliseconds