Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DActiveUnlockConfigTest.kt407 assertTrue(activeUnlockConfig.isWakeupConsideredUnlockIntent(wakeReason)) in isWakeupConsideredUnlockIntent_singleValue()
409 assertFalse(activeUnlockConfig.isWakeupConsideredUnlockIntent(wakeReason)) in isWakeupConsideredUnlockIntent_singleValue()
432 assertTrue(activeUnlockConfig.isWakeupConsideredUnlockIntent(wakeReason)) in isWakeupConsideredUnlockIntent_multiValue()
434 assertFalse(activeUnlockConfig.isWakeupConsideredUnlockIntent(wakeReason)) in isWakeupConsideredUnlockIntent_multiValue()
437 assertTrue(activeUnlockConfig.isWakeupConsideredUnlockIntent(PowerManager.WAKE_REASON_LIFT)) in isWakeupConsideredUnlockIntent_multiValue()
438 assertTrue(activeUnlockConfig.isWakeupConsideredUnlockIntent(PowerManager.WAKE_REASON_TAP)) in isWakeupConsideredUnlockIntent_multiValue()
440 activeUnlockConfig.isWakeupConsideredUnlockIntent( in isWakeupConsideredUnlockIntent_multiValue()
458 assertFalse(activeUnlockConfig.isWakeupConsideredUnlockIntent(wakeReason)) in isWakeupConsideredUnlockIntent_emptyValues()
461 activeUnlockConfig.isWakeupConsideredUnlockIntent(PowerManager.WAKE_REASON_LIFT) in isWakeupConsideredUnlockIntent_emptyValues()
463 assertFalse(activeUnlockConfig.isWakeupConsideredUnlockIntent(PowerManager.WAKE_REASON_TAP)) in isWakeupConsideredUnlockIntent_emptyValues()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DActiveUnlockConfig.kt302 fun isWakeupConsideredUnlockIntent(pmWakeReason: Int): Boolean { in isWakeupConsideredUnlockIntent() method
DKeyguardUpdateMonitor.java2652 mActiveUnlockConfig.isWakeupConsideredUnlockIntent(wakeReason) in requestActiveUnlockFromWakeReason()