Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/
DProfileData.cpp98 mJankLegacyFrameCount >>= divider; in mergeWith()
99 mJankLegacyFrameCount += other.mJankLegacyFrameCount; in mergeWith()
119 dprintf(fd, "\nJanky frames (legacy): %u (%.2f%%)", mJankLegacyFrameCount, mTotalFrameCount == 0 in dump()
121 : (float)mJankLegacyFrameCount / (float)mTotalFrameCount * 100.0f); in dump()
170 mJankLegacyFrameCount = 0; in reset()
DProfileData.h64 void reportJankLegacy() { mJankLegacyFrameCount++; } in reportJankLegacy()
69 uint32_t jankLegacyFrameCount() const { return mJankLegacyFrameCount; } in jankLegacyFrameCount()
110 uint32_t mJankLegacyFrameCount; variable