Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardAbsKeyInputViewController.java158 int secondsRemaining = (int) Math.round(millisUntilFinished / 1000.0); in handleAttemptLockout()
160 arguments.put("count", secondsRemaining); in handleAttemptLockout()
DKeyguardPatternViewController.java385 final int secondsRemaining = (int) Math.round(millisUntilFinished / 1000.0); in handleAttemptLockout()
387 arguments.put("count", secondsRemaining); in handleAttemptLockout()
/frameworks/base/packages/SystemUI/src/com/android/systemui/bouncer/domain/interactor/
DBouncerMessageInteractor.kt257 val secondsRemaining = (millisUntilFinished / 1000.0).roundToInt() in <lambda>() constant
265 mutableMapOf<String, Any>(Pair("count", secondsRemaining)) in <lambda>()