/arkcompiler/runtime_core/static_core/runtime/tooling/inspector/ |
H A D | inspector_server.cpp | 581 auto &scopeChain, auto &objThis) { in EnumerateCallFrames() 583 AddCallFrameInfo(callFrames, callFrameInfo, scopeChain, thread, objThis); in EnumerateCallFrames() 588 const std::vector<Scope> &scopeChain, PtThread thread, in AddCallFrameInfo() 603 callFrame.AddProperty("scopeChain", [&](JsonArrayBuilder &scopeChainBuilder) { in AddCallFrameInfo() 604 for (auto &scope : scopeChain) { in AddCallFrameInfo() 587 AddCallFrameInfo(JsonArrayBuilder &callFrames, const CallFrameInfo &callFrameInfo, const std::vector<Scope> &scopeChain, PtThread thread, const std::optional<RemoteObject> &objThis) AddCallFrameInfo() argument
|
H A D | inspector_server.h | 111 const std::vector<Scope> &scopeChain, PtThread thread,
|
H A D | inspector.cpp | 494 auto scopeChain = std::vector {Scope(Scope::Type::LOCAL, std::move(frameObject)), in DebuggableThreadPostSuspend() 497 handler(frameId++, methodName, sourceFile, lineNumber, scopeChain, objThis); in DebuggableThreadPostSuspend()
|
/arkcompiler/toolchain/tooling/test/ |
H A D | debugger_types_test.cpp | 1385 "location":{"scriptId":"5","lineNumber":19},"url":"url7","scopeChain": 1395 "location":{"scriptId":"5","lineNumber":19},"url":"url7","scopeChain": 1405 "location":{"scriptId":"5","lineNumber":19},"url":"url7","scopeChain": 1415 "location":{"scriptId":"5","lineNumber":19},"url":"url7","scopeChain": 1425 "location":{"scriptId":"5","lineNumber":19},"url":"url7","scopeChain": 1435 "location":{"scriptId":"5","lineNumber":19},"url":"url7","scopeChain": 1445 "location":{"scriptId2":"id5","lineNumber":19},"url":"url7","scopeChain": 1455 "location":10,"url":"url7","scopeChain": 1465 "location":{"scriptId":"5","lineNumber":19},"url":10,"scopeChain": 1475 "location":{"scriptId":"5","lineNumber":19},"url":{"url":"url7"},"scopeChain" [all...] |
/arkcompiler/toolchain/tooling/agent/ |
H A D | debugger_impl.cpp | 1710 std::vector<std::unique_ptr<Scope>> scopeChain; in GenerateCallFrame() local 1711 DebuggerImpl::GenerateScopeChains(getScope, frameHandler, jsPandaFile, scopeChain, thisObj); in GenerateCallFrame() 1716 .SetScopeChain(std::move(scopeChain)) in GenerateCallFrame() 1724 std::vector<std::unique_ptr<Scope>> &scopeChain, in GenerateScopeChains() 1727 // scopeChain & this in GenerateScopeChains() 1732 scopeChain.emplace_back(GetLocalScopeChain(frameHandler, &thisObj)); in GenerateScopeChains() 1736 scopeChain.emplace_back(std::move(scope)); in GenerateScopeChains() 1741 scopeChain.emplace_back(GetModuleScopeChain(frameHandler)); in GenerateScopeChains() 1744 scopeChain.emplace_back(GetGlobalScopeChain(frameHandler)); in GenerateScopeChains() 1721 GenerateScopeChains(bool getScope, const FrameHandler *frameHandler, const JSPandaFile *jsPandaFile, std::vector<std::unique_ptr<Scope>> &scopeChain, std::unique_ptr<RemoteObject> &thisObj) GenerateScopeChains() argument
|
H A D | debugger_impl.h | 234 std::vector<std::unique_ptr<Scope>> &scopeChain, std::unique_ptr<RemoteObject> &thisObj);
|
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.cpp | 2016 std::unique_ptr<PtJson> scopeChain; in Create() local 2017 ret = params.GetArray("scopeChain", &scopeChain); in Create() 2019 int32_t len = scopeChain->GetSize(); in Create() 2021 std::unique_ptr<PtJson> arrayEle = scopeChain->Get(i); in Create() 2025 error += "'scopeChain' format error;"; in Create() 2031 error += "Unknown or wrong type of 'scopeChain';"; in Create() 2091 result->Add("scopeChain", values); in ToJson()
|
H A D | pt_types.h | 1704 CallFrame &SetScopeChain(std::vector<std::unique_ptr<Scope>> scopeChain) in SetScopeChain() argument 1706 scopeChain_ = std::move(scopeChain); in SetScopeChain()
|