Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityViewFlipperController.java44 private final List<KeyguardInputViewController<KeyguardInputView>> mChildren =
72 for (KeyguardInputViewController<KeyguardInputView> child : mChildren) { in reset()
81 for (KeyguardInputViewController<KeyguardInputView> child : mChildren) { in reloadColors()
87 KeyguardInputViewController<KeyguardInputView> getSecurityView(SecurityMode securityMode, in getSecurityView()
89 KeyguardInputViewController<KeyguardInputView> childController = null; in getSecurityView()
90 for (KeyguardInputViewController<KeyguardInputView> child : mChildren) { in getSecurityView()
101 KeyguardInputView view = null; in getSecurityView()
104 view = (KeyguardInputView) mLayoutInflater.inflate( in getSecurityView()
137 public void show(KeyguardInputViewController<KeyguardInputView> childController) { in show()
145 extends KeyguardInputViewController<KeyguardInputView> {
H A DKeyguardInputView.java33 public abstract class KeyguardInputView extends LinearLayout { class
36 public KeyguardInputView(Context context) { in KeyguardInputView() method in KeyguardInputView
40 public KeyguardInputView(Context context, in KeyguardInputView() method in KeyguardInputView
45 public KeyguardInputView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) { in KeyguardInputView() method in KeyguardInputView
85 InteractionJankMonitor.getInstance().begin(KeyguardInputView.this, cuj); in getAnimationListener()
H A DKeyguardSecurityViewFlipper.java70 KeyguardInputView getSecurityView() { in getSecurityView()
72 if (child instanceof KeyguardInputView) { in getSecurityView()
73 return (KeyguardInputView) child; in getSecurityView()
79 KeyguardInputView ksv = getSecurityView(); in getTitle()
92 KeyguardInputView v = getSecurityView(); in animateForIme()
H A DKeyguardInputViewController.java39 public abstract class KeyguardInputViewController<T extends KeyguardInputView>
197 public KeyguardInputViewController create(KeyguardInputView keyguardInputView, in create()
H A DKeyguardSecurityContainerController.java469 KeyguardInputViewController<KeyguardInputView> oldView = getCurrentSecurityController(); in showSecurityScreen()
476 KeyguardInputViewController<KeyguardInputView> newView = changeSecurityMode(securityMode); in showSecurityScreen()
567 private KeyguardInputViewController<KeyguardInputView> getCurrentSecurityController() { in getCurrentSecurityController()
572 private KeyguardInputViewController<KeyguardInputView> changeSecurityMode( in changeSecurityMode()
H A DKeyguardAbsKeyInputView.java31 public abstract class KeyguardAbsKeyInputView extends KeyguardInputView {
H A DKeyguardPatternView.java41 public class KeyguardPatternView extends KeyguardInputView
H A DKeyguardSecurityContainer.java589 KeyguardInputView securityView = mSecurityViewFlipper.getSecurityView(); in beginJankInstrument()
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardSecurityViewFlipperControllerTest.java68 private KeyguardInputView mInputView;
79 any(KeyguardInputView.class), any(SecurityMode.class), in setup()