Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardPinBasedInputView.java19 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_DEVICE_ADMIN;
20 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_NONE;
21 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_NON_STRONG_BIOMETRIC_TIMEOUT;
22 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_PREPARE_FOR_UPDATE;
23 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_RESTART;
24 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_TIMEOUT;
25 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_TRUSTAGENT_EXPIRED;
26 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_USER_REQUEST;
DKeyguardPasswordView.java21 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_DEVICE_ADMIN;
22 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_NONE;
23 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_NON_STRONG_BIOMETRIC_TIMEOUT;
24 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_PREPARE_FOR_UPDATE;
25 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_RESTART;
26 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_TIMEOUT;
27 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_TRUSTAGENT_EXPIRED;
28 import static com.android.keyguard.KeyguardSecurityView.PROMPT_REASON_USER_REQUEST;
DKeyguardSecurityView.java21 public interface KeyguardSecurityView { interface
DKeyguardInputViewController.java42 extends ViewController<T> implements KeyguardSecurityView {
DKeyguardPasswordViewController.java192 if (reason != KeyguardSecurityView.SCREEN_ON || mShowImeAtScreenOn) { in onResume()
DKeyguardSecurityContainerController.java94 implements KeyguardSecurityView {
932 newView.onResume(KeyguardSecurityView.VIEW_REVEALED); in showSecurityScreen()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
DKeyguardBouncerViewBinder.kt27 import com.android.keyguard.KeyguardSecurityView in <lambda>()
85 securityContainerController.onResume(KeyguardSecurityView.SCREEN_ON) in <lambda>()
126 KeyguardSecurityView.SCREEN_ON in <lambda>()
168 securityContainerController.onResume(KeyguardSecurityView.SCREEN_ON) in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardPasswordViewControllerTest.kt100 keyguardPasswordViewController.onResume(KeyguardSecurityView.VIEW_REVEALED) in testFocusWhenBouncerIsShown()
111 keyguardPasswordViewController.onResume(KeyguardSecurityView.VIEW_REVEALED) in testDoNotFocusWhenBouncerIsHidden()
DKeyguardPinBasedInputViewControllerTest.java115 mKeyguardPinViewController.onResume(KeyguardSecurityView.SCREEN_ON); in onResume_requestsFocus()
DKeyguardSimPinViewControllerTest.kt103 underTest.onResume(KeyguardSecurityView.VIEW_REVEALED) in onResume()
DKeyguardSimPukViewControllerTest.kt106 underTest.onResume(KeyguardSecurityView.VIEW_REVEALED) in onResume()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
DKeyguardViewMediator.java111 import com.android.keyguard.KeyguardSecurityView;
832 return KeyguardSecurityView.PROMPT_REASON_RESTART;
834 return KeyguardSecurityView.PROMPT_REASON_TIMEOUT;
836 return KeyguardSecurityView.PROMPT_REASON_DEVICE_ADMIN;
839 return KeyguardSecurityView.PROMPT_REASON_USER_REQUEST;
842 return KeyguardSecurityView.PROMPT_REASON_TRUSTAGENT_EXPIRED;
845 return KeyguardSecurityView.PROMPT_REASON_AFTER_LOCKOUT;
847 return KeyguardSecurityView.PROMPT_REASON_PREPARE_FOR_UPDATE;
850 return KeyguardSecurityView.PROMPT_REASON_NON_STRONG_BIOMETRIC_TIMEOUT;
852 return KeyguardSecurityView.PROMPT_REASON_NON_STRONG_BIOMETRIC_TIMEOUT;
[all …]
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/
DKeyguardViewMediatorTest.java57 import com.android.keyguard.KeyguardSecurityView;
308 assertEquals(KeyguardSecurityView.PROMPT_REASON_DEVICE_ADMIN, in testBouncerPrompt_deviceLockedByAdmin()
330 assertEquals(KeyguardSecurityView.PROMPT_REASON_NON_STRONG_BIOMETRIC_TIMEOUT, in testBouncerPrompt_nonStrongIdleTimeout()