Home
last modified time | relevance | path

Searched refs:isPinSet (Results 1 – 7 of 7) sorted by relevance

/packages/apps/TvSettings/Settings/tests/robotests/src/com/android/tv/settings/users/
DRestrictedProfilePinStorageTest.java90 verify(mPinService).isPinSet(); in testSetPinWhenNoPinIsSet_success()
121 verify(mPinService, atLeastOnce()).isPinSet(); in testSetPinWhenCorrectPinIsInput_success()
162 verify(mPinService).isPinSet(); in testIsPinCorrect()
174 verify(mPinService).isPinSet(); in testIsPinCorrect_legacy()
184 mPinStorage.isPinSet(); in testIsPinSet()
186 verify(mPinService).isPinSet(); in testIsPinSet()
194 mPinStorage.isPinSet(); in testIsPinSet_legacy()
196 verify(mPinService).isPinSet(); in testIsPinSet_legacy()
207 verify(mPinService).isPinSet(); in testMigrationToInternalStorage_IsPinCorrect()
220 verify(mPinService, atLeastOnce()).isPinSet(); in testMigrationToInternalStorage_SetPin()
[all …]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
DRestrictedProfilePinDialogFragment.java136 public void isPinSet(Consumer<Boolean> consumer) { in isPinSet() method in RestrictedProfilePinDialogFragment
139 boolean isPinSet = mRestrictedProfilePinStorage.isPinSet(); in isPinSet()
140 mUiThreadHandler.post(() -> consumer.accept(isPinSet)); in isPinSet()
DRestrictedProfilePinStorage.java86 if (!isPinSet() || isPinCorrect(originalPin)) { in setPin()
122 public boolean isPinSet() { in isPinSet() method in RestrictedProfilePinStorage
166 return getPinService().isPinSet(); in isPinSetInternal()
DIRestrictedProfilePinService.aidl36 boolean isPinSet(); in isPinSet() method
DRestrictedProfilePinService.java88 public boolean isPinSet() { in isPinSet() method in RestrictedProfilePinService.PinServiceImpl
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
DPinDialogFragment.java159 public abstract void isPinSet(Consumer<Boolean> consumer); in isPinSet() method in PinDialogFragment
196 isPinSet(result -> dispatchOnIsPinSet(result, savedInstanceState, v)); in onCreateView()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/
DSecurityFragment.java306 boolean pinIsSet = mRestrictedProfilePinStorage.isPinSet(); in createRestrictedProfile()