Home
last modified time | relevance | path

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

/external/oboe/apps/OboeTester/app/src/main/java/com/google/sample/oboe/manualtest/
DGlitchActivity.java87 private double mSecondsWithoutGlitches; field in GlitchActivity.GlitchSniffer
114 mSecondsWithoutGlitches = 0.0; in startSniffer()
136 mSecondsWithoutGlitches = 0.0; in run()
139 mSecondsWithoutGlitches = (now - mTimeOfLastGlitch) / 1000.0; in run()
146 if (mSecondsWithoutGlitches > mMaxSecondsWithoutGlitches) { in run()
147 mMaxSecondsWithoutGlitches = mSecondsWithoutGlitches; in run()
174 … message.append(String.format("time.no.glitches = %8.2f\n", mSecondsWithoutGlitches)); in getCurrentStatusReport()