Home
last modified time | relevance | path

Searched refs:stackIdCount (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/base/hiviewdfx/hicollie/frameworks/native/thread_sampler/
H A Dthread_sampler_utils.cpp59 void PutStackId(std::vector<StackIdAndCount>& stackIdCount, uint64_t stackId) in PutStackId() argument
61 …auto it = std::find_if(stackIdCount.begin(), stackIdCount.end(), [&stackId](const auto& stackIdCnt… in PutStackId()
64 if (it == stackIdCount.end()) { in PutStackId()
69 stackIdCount.emplace_back(sac); in PutStackId()
H A Dsample_stack_printer.cpp143 std::string SampleStackPrinter::GetTreeStack(std::vector<StackIdAndCount>& stackIdCount, in GetTreeStack() argument
146 std::sort(stackIdCount.begin(), stackIdCount.end(), [](const auto& a, const auto& b) { in GetTreeStack()
149 for (auto it = stackIdCount.begin(); it != stackIdCount.end(); it++) { in GetTreeStack()
/ohos5.0/base/hiviewdfx/hicollie/frameworks/native/thread_sampler/include/
H A Dthread_sampler_utils.h42 void PutStackId(std::vector<StackIdAndCount>& stackIdCount, uint64_t stackId);
H A Dsample_stack_printer.h61 std::string GetTreeStack(std::vector<StackIdAndCount>& stackIdCount,