Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardIndicationRotateTextViewController.java84 @Nullable ShowNextIndication mShowNextIndicationRunnable; field in KeyguardIndicationRotateTextViewController
195 if (mShowNextIndicationRunnable != null) { in updateIndication()
196 mShowNextIndicationRunnable.runImmediately(); in updateIndication()
305 return mShowNextIndicationRunnable != null; in isNextIndicationScheduled()
311 mShowNextIndicationRunnable = new ShowNextIndication(msUntilShowNextMsg); in scheduleShowNextIndication()
315 if (mShowNextIndicationRunnable != null) { in cancelScheduledIndication()
316 mShowNextIndicationRunnable.cancelDelayedExecution(); in cancelScheduledIndication()
317 mShowNextIndicationRunnable = null; in cancelScheduledIndication()
378 pw.println(" showNextIndicationRunnable:" + mShowNextIndicationRunnable); in dump()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
DKeyguardIndicationRotateTextViewControllerTest.java107 mController.mShowNextIndicationRunnable = mockShowNextIndication; in onViewDetached_removesAllScheduledIndications()
114 assertNull(mController.mShowNextIndicationRunnable); in onViewDetached_removesAllScheduledIndications()
134 mController.mShowNextIndicationRunnable = mockShowNextIndication; in destroy_removesAllScheduledIndications()
141 assertNull(mController.mShowNextIndicationRunnable); in destroy_removesAllScheduledIndications()