Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DProfileData.h63 void reportJankType(JankType type) { mJankTypeCounts[static_cast<int>(type)]++; } in reportJankType()
68 uint32_t jankTypeCount(JankType type) const { return mJankTypeCounts[static_cast<int>(type)]; } in jankTypeCount()
96 std::array<uint32_t, NUM_BUCKETS> mJankTypeCounts; variable
116 std::array<uint32_t, NUM_BUCKETS>& editJankTypeCounts() { return mJankTypeCounts; } in editJankTypeCounts()
DProfileData.cpp87 for (size_t i = 0; i < other.mJankTypeCounts.size(); i++) { in mergeWith()
88 mJankTypeCounts[i] >>= divider; in mergeWith()
89 mJankTypeCounts[i] += other.mJankTypeCounts[i]; in mergeWith()
120 dprintf(fd, "\nNumber %s: %u", JANK_TYPE_NAMES[i], mJankTypeCounts[i]); in dump()
155 mJankTypeCounts.fill(0); in reset()