Home
last modified time | relevance | path

Searched refs:mJankTypeCounts (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/libs/hwui/
DProfileData.cpp86 for (size_t i = 0; i < other.mJankTypeCounts.size(); i++) { in mergeWith()
87 mJankTypeCounts[i] >>= divider; in mergeWith()
88 mJankTypeCounts[i] += other.mJankTypeCounts[i]; in mergeWith()
114 dprintf(fd, "\nNumber %s: %u", JANK_TYPE_NAMES[i], mJankTypeCounts[i]); in dump()
141 mJankTypeCounts.fill(0); in reset()
DProfileData.h60 void reportJankType(JankType type) { mJankTypeCounts[static_cast<int>(type)]++; } in reportJankType()
65 uint32_t jankTypeCount(JankType type) const { return mJankTypeCounts[static_cast<int>(type)]; } in jankTypeCount()
86 std::array<uint32_t, NUM_BUCKETS> mJankTypeCounts; variable
100 std::array<uint32_t, NUM_BUCKETS>& editJankTypeCounts() { return mJankTypeCounts; } in editJankTypeCounts()