Home
last modified time | relevance | path

Searched refs:mLockPatternUtils (Results 1 – 25 of 84) sorted by relevance

1234

/packages/apps/Settings/tests/robotests/src/com/android/settings/security/
DChangeScreenLockPreferenceControllerTest.java56 private LockPatternUtils mLockPatternUtils; field in ChangeScreenLockPreferenceControllerTest
77 .thenReturn(mLockPatternUtils); in setUp()
97 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(false); in updateState_notSecureDisableKeyguard_shouldNotShowGear()
98 when(mLockPatternUtils.isLockScreenDisabled(anyInt())).thenReturn(true); in updateState_notSecureDisableKeyguard_shouldNotShowGear()
108 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(false); in updateState_notSecureDisableKeyguard_summaryShouldShowOff()
109 when(mLockPatternUtils.isLockScreenDisabled(anyInt())).thenReturn(true); in updateState_notSecureDisableKeyguard_summaryShouldShowOff()
120 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(false); in updateState_notSecureWithSwipeKeyguard_shouldNotShowGear()
121 when(mLockPatternUtils.isLockScreenDisabled(anyInt())).thenReturn(false); in updateState_notSecureWithSwipeKeyguard_shouldNotShowGear()
131 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(false); in updateState_notSecureWithSwipeKeyguard_summaryShouldShowSwipe()
132 when(mLockPatternUtils.isLockScreenDisabled(anyInt())).thenReturn(false); in updateState_notSecureWithSwipeKeyguard_summaryShouldShowSwipe()
[all …]
DVisiblePatternProfilePreferenceControllerTest.java60 private LockPatternUtils mLockPatternUtils; field in VisiblePatternProfilePreferenceControllerTest
84 .thenReturn(mLockPatternUtils); in setUp()
94 when(mLockPatternUtils.isSecure(FAKE_PROFILE_USER_ID)).thenReturn(false); in getAvailabilityStatus_notSecure_DISABLED()
95 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(FAKE_PROFILE_USER_ID)) in getAvailabilityStatus_notSecure_DISABLED()
103 when(mLockPatternUtils.isSecure(FAKE_PROFILE_USER_ID)).thenReturn(true); in getAvailabilityStatus_secureWithPassword_DISABLED()
104 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(FAKE_PROFILE_USER_ID)) in getAvailabilityStatus_secureWithPassword_DISABLED()
112 when(mLockPatternUtils.isSecure(FAKE_PROFILE_USER_ID)).thenReturn(true); in getAvailabilityStatus_secureWithPattern_AVAILABLE()
113 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(FAKE_PROFILE_USER_ID)) in getAvailabilityStatus_secureWithPattern_AVAILABLE()
/packages/apps/Settings/tests/robotests/src/com/android/settings/security/screenlock/
DPowerButtonInstantLockPreferenceControllerTest.java48 private LockPatternUtils mLockPatternUtils; field in PowerButtonInstantLockPreferenceControllerTest
67 mContext, TEST_USER_ID, mLockPatternUtils); in setUp()
72 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(true); in isAvailable_lockSetToPattern_shouldReturnTrue()
73 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(TEST_USER_ID)) in isAvailable_lockSetToPattern_shouldReturnTrue()
81 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(true); in isAvailable_lockSetToPin_shouldReturnTrue()
82 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(TEST_USER_ID)) in isAvailable_lockSetToPin_shouldReturnTrue()
90 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(true); in isAvailable_lockSetToPassword_shouldReturnTrue()
91 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(TEST_USER_ID)) in isAvailable_lockSetToPassword_shouldReturnTrue()
99 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(false); in isAvailable_lockSetToNone_shouldReturnFalse()
107 when(mTrustAgentManager.getActiveTrustAgentLabel(mContext, mLockPatternUtils)) in updateState_shouldSetPref()
[all …]
DLockScreenPreferenceControllerTest.java59 private LockPatternUtils mLockPatternUtils; field in LockScreenPreferenceControllerTest
80 .thenReturn(mLockPatternUtils); in setUp()
91 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(false); in getAvailabilityStatus_notSecure_lockscreenDisabled_DISABLED()
92 when(mLockPatternUtils.isLockScreenDisabled(anyInt())).thenReturn(true); in getAvailabilityStatus_notSecure_lockscreenDisabled_DISABLED()
99 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(false); in getAvailabilityStatus_notSecure_lockscreenEnabled_AVAILABLE()
100 when(mLockPatternUtils.isLockScreenDisabled(anyInt())).thenReturn(false); in getAvailabilityStatus_notSecure_lockscreenEnabled_AVAILABLE()
107 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in getAvailabilityStatus_secure_hasLockScreen_AVAILABLE()
108 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(anyInt())) in getAvailabilityStatus_secure_hasLockScreen_AVAILABLE()
116 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in getAvailabilityStatus_secure_noLockScreen_DISABLED()
117 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(anyInt())) in getAvailabilityStatus_secure_noLockScreen_DISABLED()
[all …]
DPatternVisiblePreferenceControllerTest.java45 private LockPatternUtils mLockPatternUtils; field in PatternVisiblePreferenceControllerTest
55 new PatternVisiblePreferenceController(mContext, TEST_USER_ID, mLockPatternUtils); in setUp()
61 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(true); in isAvailable_lockSetToPattern_shouldReturnTrue()
62 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(TEST_USER_ID)) in isAvailable_lockSetToPattern_shouldReturnTrue()
70 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(true); in isAvailable_lockSetToPin_shouldReturnFalse()
71 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(TEST_USER_ID)) in isAvailable_lockSetToPin_shouldReturnFalse()
79 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(false); in isAvailable_lockSetToNone_shouldReturnFalse()
86 when(mLockPatternUtils.isVisiblePatternEnabled(TEST_USER_ID)).thenReturn(true); in updateState_shouldSetPref()
90 when(mLockPatternUtils.isVisiblePatternEnabled(TEST_USER_ID)).thenReturn(false); in updateState_shouldSetPref()
99 verify(mLockPatternUtils).setVisiblePatternEnabled(true, TEST_USER_ID); in onPreferenceChange_shouldUpdateLockPatternUtils()
DLockAfterTimeoutPreferenceControllerTest.java58 private LockPatternUtils mLockPatternUtils; field in LockAfterTimeoutPreferenceControllerTest
77 mContext, TEST_USER_ID, mLockPatternUtils); in setUp()
82 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(true); in isAvailable_lockSetToPattern_shouldReturnTrue()
83 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(TEST_USER_ID)) in isAvailable_lockSetToPattern_shouldReturnTrue()
91 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(true); in isAvailable_lockSetToPin_shouldReturnTrue()
92 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(TEST_USER_ID)) in isAvailable_lockSetToPin_shouldReturnTrue()
100 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(true); in isAvailable_lockSetToPassword_shouldReturnTrue()
101 when(mLockPatternUtils.getKeyguardStoredPasswordQuality(TEST_USER_ID)) in isAvailable_lockSetToPassword_shouldReturnTrue()
109 when(mLockPatternUtils.isSecure(TEST_USER_ID)).thenReturn(false); in isAvailable_lockSetToNone_shouldReturnFalse()
/packages/apps/Settings/src/com/android/settings/security/
DLockUnificationPreferenceController.java66 private final LockPatternUtils mLockPatternUtils; field in LockUnificationPreferenceController
88 mLockPatternUtils = FeatureFactory.getFactory(context) in LockUnificationPreferenceController()
97 && mLockPatternUtils.isSeparateProfileChallengeAllowed(mProfileUserId); in isAvailable()
115 mLockPatternUtils.getKeyguardStoredPasswordQuality(mProfileUserId) in onPreferenceChange()
136 mLockPatternUtils.isSeparateProfileChallengeEnabled(mProfileUserId);
225 mLockPatternUtils.getKeyguardStoredPasswordQuality(mProfileUserId);
228 mLockPatternUtils.saveLockPattern(
232 mLockPatternUtils.saveLockPassword(
235 mLockPatternUtils.setSeparateProfileChallengeEnabled(mProfileUserId, false,
238 mLockPatternUtils.isVisiblePatternEnabled(mProfileUserId);
[all …]
DChangeScreenLockPreferenceController.java51 protected final LockPatternUtils mLockPatternUtils; field in ChangeScreenLockPreferenceController
62 mLockPatternUtils = FeatureFactory.getFactory(context) in ChangeScreenLockPreferenceController()
88 if (mLockPatternUtils.isSecure(mUserId)) { in updateState()
97 if (!mLockPatternUtils.isSeparateProfileChallengeEnabled(mProfileChallengeUserId)) { in updateState()
124 && !mLockPatternUtils.isSeparateProfileChallengeEnabled(mProfileChallengeUserId) in handlePreferenceTreeClick()
140 if (!mLockPatternUtils.isSecure(userId)) { in updateSummary()
142 || mLockPatternUtils.isLockScreenDisabled(userId)) { in updateSummary()
148 switch (mLockPatternUtils.getKeyguardStoredPasswordQuality(userId)) { in updateSummary()
DOwnerInfoPreferenceController.java44 private final LockPatternUtils mLockPatternUtils; field in OwnerInfoPreferenceController
56 mLockPatternUtils = new LockPatternUtils(context); in OwnerInfoPreferenceController()
92 mOwnerInfoPref.setEnabled(!mLockPatternUtils.isLockScreenDisabled(MY_USER_ID)); in updateEnableState()
123 return mLockPatternUtils.isDeviceOwnerInfoEnabled(); in isDeviceOwnerInfoEnabled()
128 return mLockPatternUtils.getDeviceOwnerInfo(); in getDeviceOwnerInfo()
133 return mLockPatternUtils.isOwnerInfoEnabled(MY_USER_ID); in isOwnerInfoEnabled()
138 return mLockPatternUtils.getOwnerInfo(MY_USER_ID); in getOwnerInfo()
DVisiblePatternProfilePreferenceController.java47 private final LockPatternUtils mLockPatternUtils; field in VisiblePatternProfilePreferenceController
62 mLockPatternUtils = FeatureFactory.getFactory(context) in VisiblePatternProfilePreferenceController()
76 final boolean isSecure = mLockPatternUtils.isSecure(mProfileChallengeUserId); in getAvailabilityStatus()
77 final boolean hasPassword = mLockPatternUtils in getAvailabilityStatus()
96 return mLockPatternUtils.isVisiblePatternEnabled( in isChecked()
105 mLockPatternUtils.setVisiblePatternEnabled(isChecked, mProfileChallengeUserId); in setChecked()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/security/
DLockUnificationPreferenceController.java66 private final LockPatternUtils mLockPatternUtils; field in LockUnificationPreferenceController
88 mLockPatternUtils = FeatureFactory.getFactory(context) in LockUnificationPreferenceController()
97 && mLockPatternUtils.isSeparateProfileChallengeAllowed(mProfileUserId); in isAvailable()
115 mLockPatternUtils.getKeyguardStoredPasswordQuality(mProfileUserId) in onPreferenceChange()
136 mLockPatternUtils.isSeparateProfileChallengeEnabled(mProfileUserId);
225 mLockPatternUtils.getKeyguardStoredPasswordQuality(mProfileUserId);
228 mLockPatternUtils.saveLockPattern(
232 mLockPatternUtils.saveLockPassword(
235 mLockPatternUtils.setSeparateProfileChallengeEnabled(mProfileUserId, false,
238 mLockPatternUtils.isVisiblePatternEnabled(mProfileUserId);
[all …]
DChangeScreenLockPreferenceController.java51 protected final LockPatternUtils mLockPatternUtils; field in ChangeScreenLockPreferenceController
62 mLockPatternUtils = FeatureFactory.getFactory(context) in ChangeScreenLockPreferenceController()
88 if (mLockPatternUtils.isSecure(mUserId)) { in updateState()
97 if (!mLockPatternUtils.isSeparateProfileChallengeEnabled(mProfileChallengeUserId)) { in updateState()
124 && !mLockPatternUtils.isSeparateProfileChallengeEnabled(mProfileChallengeUserId) in handlePreferenceTreeClick()
140 if (!mLockPatternUtils.isSecure(userId)) { in updateSummary()
142 || mLockPatternUtils.isLockScreenDisabled(userId)) { in updateSummary()
148 switch (mLockPatternUtils.getKeyguardStoredPasswordQuality(userId)) { in updateSummary()
DOwnerInfoPreferenceController.java44 private final LockPatternUtils mLockPatternUtils; field in OwnerInfoPreferenceController
56 mLockPatternUtils = new LockPatternUtils(context); in OwnerInfoPreferenceController()
92 mOwnerInfoPref.setEnabled(!mLockPatternUtils.isLockScreenDisabled(MY_USER_ID)); in updateEnableState()
123 return mLockPatternUtils.isDeviceOwnerInfoEnabled(); in isDeviceOwnerInfoEnabled()
128 return mLockPatternUtils.getDeviceOwnerInfo(); in getDeviceOwnerInfo()
133 return mLockPatternUtils.isOwnerInfoEnabled(MY_USER_ID); in isOwnerInfoEnabled()
138 return mLockPatternUtils.getOwnerInfo(MY_USER_ID); in getOwnerInfo()
DVisiblePatternProfilePreferenceController.java47 private final LockPatternUtils mLockPatternUtils; field in VisiblePatternProfilePreferenceController
62 mLockPatternUtils = FeatureFactory.getFactory(context) in VisiblePatternProfilePreferenceController()
76 final boolean isSecure = mLockPatternUtils.isSecure(mProfileChallengeUserId); in getAvailabilityStatus()
77 final boolean hasPassword = mLockPatternUtils in getAvailabilityStatus()
96 return mLockPatternUtils.isVisiblePatternEnabled( in isChecked()
105 mLockPatternUtils.setVisiblePatternEnabled(isChecked, mProfileChallengeUserId); in setChecked()
/packages/apps/Settings/src/com/android/settings/security/screenlock/
DPowerButtonInstantLockPreferenceController.java39 private final LockPatternUtils mLockPatternUtils; field in PowerButtonInstantLockPreferenceController
46 mLockPatternUtils = lockPatternUtils; in PowerButtonInstantLockPreferenceController()
53 if (!mLockPatternUtils.isSecure(mUserId)) { in isAvailable()
56 switch (mLockPatternUtils.getKeyguardStoredPasswordQuality(mUserId)) { in isAvailable()
73 mLockPatternUtils.getPowerButtonInstantlyLocks(mUserId)); in updateState()
75 mContext, mLockPatternUtils); in updateState()
92 mLockPatternUtils.setPowerButtonInstantlyLocks((Boolean) newValue, mUserId); in onPreferenceChange()
DPatternVisiblePreferenceController.java35 private final LockPatternUtils mLockPatternUtils; field in PatternVisiblePreferenceController
41 mLockPatternUtils = lockPatternUtils; in PatternVisiblePreferenceController()
57 mLockPatternUtils.isVisiblePatternEnabled(mUserId)); in updateState()
61 return mLockPatternUtils.isSecure(mUserId) in isPatternLock()
62 && mLockPatternUtils.getKeyguardStoredPasswordQuality(mUserId) in isPatternLock()
68 mLockPatternUtils.setVisiblePatternEnabled((Boolean) newValue, mUserId); in onPreferenceChange()
DLockScreenPreferenceController.java38 private final LockPatternUtils mLockPatternUtils; field in LockScreenPreferenceController
43 mLockPatternUtils = FeatureFactory.getFactory(context) in LockScreenPreferenceController()
55 if (!mLockPatternUtils.isSecure(MY_USER_ID)) { in getAvailabilityStatus()
56 return mLockPatternUtils.isLockScreenDisabled(MY_USER_ID) in getAvailabilityStatus()
59 return mLockPatternUtils.getKeyguardStoredPasswordQuality(MY_USER_ID) in getAvailabilityStatus()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/security/screenlock/
DPatternVisiblePreferenceController.java35 private final LockPatternUtils mLockPatternUtils; field in PatternVisiblePreferenceController
41 mLockPatternUtils = lockPatternUtils; in PatternVisiblePreferenceController()
57 mLockPatternUtils.isVisiblePatternEnabled(mUserId)); in updateState()
61 return mLockPatternUtils.isSecure(mUserId) in isPatternLock()
62 && mLockPatternUtils.getKeyguardStoredPasswordQuality(mUserId) in isPatternLock()
68 mLockPatternUtils.setVisiblePatternEnabled((Boolean) newValue, mUserId); in onPreferenceChange()
DPowerButtonInstantLockPreferenceController.java36 private final LockPatternUtils mLockPatternUtils; field in PowerButtonInstantLockPreferenceController
42 mLockPatternUtils = lockPatternUtils; in PowerButtonInstantLockPreferenceController()
47 if (!mLockPatternUtils.isSecure(mUserId)) { in isAvailable()
50 switch (mLockPatternUtils.getKeyguardStoredPasswordQuality(mUserId)) { in isAvailable()
67 mLockPatternUtils.getPowerButtonInstantlyLocks(mUserId)); in updateState()
78 mLockPatternUtils.setPowerButtonInstantlyLocks((Boolean) newValue, mUserId); in onPreferenceChange()
DLockScreenPreferenceController.java38 private final LockPatternUtils mLockPatternUtils; field in LockScreenPreferenceController
43 mLockPatternUtils = FeatureFactory.getFactory(context) in LockScreenPreferenceController()
55 if (!mLockPatternUtils.isSecure(MY_USER_ID)) { in getAvailabilityStatus()
56 return mLockPatternUtils.isLockScreenDisabled(MY_USER_ID) in getAvailabilityStatus()
59 return mLockPatternUtils.getKeyguardStoredPasswordQuality(MY_USER_ID) in getAvailabilityStatus()
/packages/apps/Settings/tests/robotests/src/com/android/settings/security/trustagent/
DManageTrustAgentsPreferenceControllerTest.java51 private LockPatternUtils mLockPatternUtils; field in ManageTrustAgentsPreferenceControllerTest
64 .thenReturn(mLockPatternUtils); in setUp()
85 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(false); in updateState_isNotSecure_shouldDisablePreference()
96 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in updateState_isSecure_noTrustAgent_shouldShowGenericSummary()
97 when(mTrustAgentManager.getActiveTrustAgents(mContext, mLockPatternUtils)) in updateState_isSecure_noTrustAgent_shouldShowGenericSummary()
109 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in updateState_isSecure_hasTrustAgent_shouldShowDetailedSummary()
110 when(mTrustAgentManager.getActiveTrustAgents(mContext, mLockPatternUtils)) in updateState_isSecure_hasTrustAgent_shouldShowDetailedSummary()
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/
DRedactNotificationPreferenceControllerTest.java73 private LockPatternUtils mLockPatternUtils; field in RedactNotificationPreferenceControllerTest
90 .thenReturn(mLockPatternUtils); in setUp()
114 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(false); in getAvailabilityStatus_noSecureLockscreen()
136 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in getAvailabilityStatus_noWorkProfile()
151 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in getAvailabilityStatus_adminSaysNoRedaction()
169 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in getAvailabilityStatus_adminSaysNoNotifications()
183 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in getAvailabilityStatus_noNotifications()
199 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in getAvailabilityStatus_workProfileLocked()
216 when(mLockPatternUtils.isSecure(anyInt())).thenReturn(true); in getAvailabilityStatus_show()
/packages/apps/Settings/src/com/android/settings/password/
DConfirmLockPassword.java119 final int storedQuality = mLockPatternUtils.getKeyguardStoredPasswordQuality( in onCreateView()
283 long deadline = mLockPatternUtils.getLockoutAttemptDeadline(mEffectiveUserId); in onResume()
291 mLockPatternUtils.getCurrentFailedPasswordAttempts(mEffectiveUserId)); in onResume()
303 mLockPatternUtils.getLockoutAttemptDeadline(mEffectiveUserId) != 0; in updatePasswordEntry()
379 mLockPatternUtils, pin, challenge, localUserId, onVerifyCallback) in startVerifyPassword()
381 mLockPatternUtils, pin, false, challenge, localUserId, in startVerifyPassword()
388 mLockPatternUtils, in startCheckPassword()
438 ConfirmDeviceCredentialUtils.reportSuccessfulAttempt(mLockPatternUtils, in onPasswordChecked()
447 long deadline = mLockPatternUtils.setLockoutAttemptDeadline( in onPasswordChecked()
488 mLockPatternUtils.getCurrentFailedPasswordAttempts(mEffectiveUserId)); in handleAttemptLockout()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/password/
DConfirmLockPassword.java119 final int storedQuality = mLockPatternUtils.getKeyguardStoredPasswordQuality( in onCreateView()
283 long deadline = mLockPatternUtils.getLockoutAttemptDeadline(mEffectiveUserId); in onResume()
291 mLockPatternUtils.getCurrentFailedPasswordAttempts(mEffectiveUserId)); in onResume()
303 mLockPatternUtils.getLockoutAttemptDeadline(mEffectiveUserId) != 0; in updatePasswordEntry()
379 mLockPatternUtils, pin, challenge, localUserId, onVerifyCallback) in startVerifyPassword()
381 mLockPatternUtils, pin, false, challenge, localUserId, in startVerifyPassword()
388 mLockPatternUtils, in startCheckPassword()
438 ConfirmDeviceCredentialUtils.reportSuccessfulAttempt(mLockPatternUtils, in onPasswordChecked()
447 long deadline = mLockPatternUtils.setLockoutAttemptDeadline( in onPasswordChecked()
488 mLockPatternUtils.getCurrentFailedPasswordAttempts(mEffectiveUserId)); in handleAttemptLockout()
DConfirmLockPattern.java139 mLockPatternUtils.isTactileFeedbackEnabled()); in onCreateView()
140 mLockPatternView.setInStealthMode(!mLockPatternUtils.isVisiblePatternEnabled( in onCreateView()
155 if (!mFrp && !mLockPatternUtils.isLockPatternEnabled(mEffectiveUserId)) { in onCreateView()
211 long deadline = mLockPatternUtils.getLockoutAttemptDeadline(mEffectiveUserId); in onResume()
299 mLockPatternUtils.getCurrentFailedPasswordAttempts(mEffectiveUserId)); in updateStage()
448 mLockPatternUtils, pattern, challenge, localUserId,
451 mLockPatternUtils, LockPatternUtils.patternToByteArray(pattern),
465 mLockPatternUtils,
490 ConfirmDeviceCredentialUtils.reportSuccessfulAttempt(mLockPatternUtils, in onPatternChecked()
499 long deadline = mLockPatternUtils.setLockoutAttemptDeadline( in onPatternChecked()

1234