Home
last modified time | relevance | path

Searched refs:scriptIdString (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/runtime_core/runtime/tooling/inspector/
Dbreakpoint_hooks.cpp64 const std::string *scriptIdString; in GetPossibleBreakpoints() local
69 if (!GetPropertyOrLog<JsonObject::StringT>(scriptIdString, params, "start", "scriptId") || in GetPossibleBreakpoints()
75 if (!ParseInt(*scriptIdString, &scriptId, 0)) { in GetPossibleBreakpoints()
76 LOG(INFO, DEBUGGER) << "Invalid script id: " << *scriptIdString; in GetPossibleBreakpoints()
158 const std::string *scriptIdString; in SetBreakpointAtLocation() local
159 if (!GetPropertyOrLog<JsonObject::StringT>(scriptIdString, params, "location", "scriptId")) { in SetBreakpointAtLocation()
164 if (!ParseInt(*scriptIdString, &scriptId, 0)) { in SetBreakpointAtLocation()
165 LOG(INFO, DEBUGGER) << "Invalid script id: " << *scriptIdString; in SetBreakpointAtLocation()
Dsource_manager.cpp88 const std::string *scriptIdString; in GetScriptSource() local
89 if (!GetPropertyOrLog<JsonObject::StringT>(scriptIdString, params, "scriptId")) { in GetScriptSource()
94 if (!ParseInt(*scriptIdString, &scriptId, 0)) { in GetScriptSource()
95 LOG(INFO, DEBUGGER) << "Invalid script id: " << *scriptIdString; in GetScriptSource()
Dstep_hooks.cpp78 const std::string *scriptIdString; in ContinueToLocation() local
79 if (!GetPropertyOrLog<JsonObject::StringT>(scriptIdString, params, "location", "scriptId")) { in ContinueToLocation()
84 if (!ParseInt(*scriptIdString, &scriptId, 0)) { in ContinueToLocation()
85 LOG(INFO, DEBUGGER) << "Invalid script id: " << *scriptIdString; in ContinueToLocation()