Searched refs:stackIdCount (Results 1 – 4 of 4) sorted by relevance
59 void PutStackId(std::vector<StackIdAndCount>& stackIdCount, uint64_t stackId) in PutStackId() argument61 …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()
143 std::string SampleStackPrinter::GetTreeStack(std::vector<StackIdAndCount>& stackIdCount, in GetTreeStack() argument146 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()
42 void PutStackId(std::vector<StackIdAndCount>& stackIdCount, uint64_t stackId);
61 std::string GetTreeStack(std::vector<StackIdAndCount>& stackIdCount,