Searched refs:processStack (Results 1 – 3 of 3) sorted by relevance
113 static bool FormatKernelStackStr(const std::vector<DfxThreadStack>& processStack, std::string& form… in FormatKernelStackStr() argument115 if (processStack.empty()) { in FormatKernelStackStr()119 for (const auto &threadStack : processStack) { in FormatKernelStackStr()137 static bool FormatKernelStackJson(std::vector<DfxThreadStack> processStack, std::string& formattedS… in FormatKernelStackJson() argument139 if (processStack.empty()) { in FormatKernelStackJson()143 for (const auto &threadStack : processStack) { in FormatKernelStackJson()173 std::vector<DfxThreadStack> processStack; in FormatKernelStack() local174 if (!FormatProcessKernelStack(kernelStack, processStack)) { in FormatKernelStack()178 return FormatKernelStackJson(processStack, formattedStack); in FormatKernelStack()180 return FormatKernelStackStr(processStack, formattedStack); in FormatKernelStack()
102 …FormatProcessKernelStack(const std::string& kernelStack, std::vector<DfxThreadStack>& processStack) in FormatProcessKernelStack() argument113 processStack.emplace_back(threadStack); in FormatProcessKernelStack()
31 …ormatProcessKernelStack(const std::string& kernelStack, std::vector<DfxThreadStack>& processStack);