Searched refs:mHists (Results 1 – 2 of 2) sorted by relevance
205 if (mHists.empty() || in logTsEntry()206 deltaMs(mHists[0].first, ts) >= kMaxLength.HistTimespanMs) { in logTsEntry()207 mHists.emplace_front(ts, std::map<int, int>()); in logTsEntry()210 if (mHists.size() >= kMaxLength.Hists) { in logTsEntry()211 mHists.resize(kMaxLength.Hists); in logTsEntry()215 ++mHists[0].second[diffJiffy]; in logTsEntry()345 if (mHists.empty() || body == nullptr) { in reportPerformance()352 timestamp startingTs = mHists[0].first; in reportPerformance()356 for (const auto &shortHist: mHists) { in reportPerformance()402 writeToFile(curr.mHists, curr.mOutlierData, curr.mPeakTimestamps, in dump()
245 std::deque<std::pair<timestamp, Hist>> mHists; variable