Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/patch/
Dquick_fix_manager.cpp215 CString stackInfo = ConvertToString(*stack); in IsQuickFixCausedException() local
216 CUnorderedSet<CString> methodNames = ParseStackInfo(stackInfo); in IsQuickFixCausedException()
232 CUnorderedSet<CString> QuickFixManager::ParseStackInfo(const CString &stackInfo) in ParseStackInfo() argument
240 while (lineIndex != stackInfo.length() - 1) { in ParseStackInfo()
241 firstIndex = stackInfo.find(" at ", lineIndex + 1); in ParseStackInfo()
242 nextIndex = stackInfo.find("(", lineIndex + 1); in ParseStackInfo()
243 CString methodName = stackInfo.substr(firstIndex + methodNameOffsetToFirstIndex, in ParseStackInfo()
246 lineIndex = stackInfo.find("\n", lineIndex + 1); in ParseStackInfo()
Dquick_fix_manager.h50 CUnorderedSet<CString> ParseStackInfo(const CString &stackInfo);
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/
Dcpu_profiler.cpp267 const CMap<struct MethodKey, struct FrameInfo> &stackInfo = generator_->GetStackInfo(); in GetStack() local
289 if (stackInfo.count(methodKey) == 0) { in GetStack()
327 const CMap<struct MethodKey, struct FrameInfo> &stackInfo = generator_->GetStackInfo(); in GetStackCallNapi() local
359 if (stackInfo.count(methodKey) == 0) { in GetStackCallNapi()