/packages/apps/Settings/tests/unit/src/com/android/settings/biometrics/ |
D | GatekeeperPasswordProviderTest.java | 69 final byte[] actualToken = mGatekeeperPasswordProvider.requestGatekeeperHat(gkPwHandle, in testRequestGatekeeperHatWithHandle_success() 87 mGatekeeperPasswordProvider.requestGatekeeperHat(gkPwHandle, challenge, userId); in testRequestGatekeeperHatWithHandle_GatekeeperCredentialNotMatchException() 98 final byte[] actualToken = mGatekeeperPasswordProvider.requestGatekeeperHat( in testRequestGatekeeperHatWithIntent_success() 116 mGatekeeperPasswordProvider.requestGatekeeperHat( in testRequestGatekeeperHatWithIntent_GatekeeperCredentialNotMatchException() 122 mGatekeeperPasswordProvider.requestGatekeeperHat(new Intent(), 1L, 0); in testRequestGatekeeperHatWithIntent_IllegalStateException()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/biometrics/combination/ |
D | CombinedBiometricProfileSettingsTest.java | 182 doReturn(new byte[] { 1 }).when(mFragment).requestGatekeeperHat(any(), anyLong(), anyInt(), in testClickFingerprintUnlockWithValidGkPwHandle() 213 doThrow(new IllegalStateException("Test")).when(mFragment).requestGatekeeperHat(any(), in testClickFingerprintUnlockIfGkPwHandleTimeout() 238 doReturn(new byte[] { 1 }).when(mFragment).requestGatekeeperHat(any(), anyLong(), anyInt(), in testActivityResultLaunchFingerprintUnlock() 272 doReturn(new byte[] { 1 }).when(mFragment).requestGatekeeperHat(any(), anyLong(), anyInt(), in testClickFaceUnlock() 301 doThrow(new IllegalStateException("Test")).when(mFragment).requestGatekeeperHat(any(), in testClickFaceUnlockIfGkPwHandleTimeout() 326 doReturn(new byte[] { 1 }).when(mFragment).requestGatekeeperHat(any(), anyLong(), anyInt(), in testActivityResultLaunchFaceUnlock() 388 doReturn(new byte[]{1}).when(mFragment).requestGatekeeperHat(any(), anyLong(), anyInt(), in testClickFingerprintUnlock() 434 doReturn(new byte[] { 1 }).when(mFragment).requestGatekeeperHat(any(), anyLong(), anyInt(), in testClickFaceUnlock() 491 doThrow(new IllegalStateException("Test")).when(mFragment).requestGatekeeperHat( in testNoCrashIfDetachActivityDuringGeneratingChallengeThroughFaceManager() 522 doThrow(new IllegalStateException("Test")).when(mFragment).requestGatekeeperHat( in testNoCrashIfDetachActivityDuringGeneratingChallengeThroughFingerprintManager()
|
/packages/apps/Settings/src/com/android/settings/biometrics/ |
D | GatekeeperPasswordProvider.java | 54 public byte[] requestGatekeeperHat(@NonNull Intent result, long challenge, int userId) { in requestGatekeeperHat() method in GatekeeperPasswordProvider 60 return requestGatekeeperHat(gatekeeperPasswordHandle, challenge, userId); in requestGatekeeperHat() 72 public byte[] requestGatekeeperHat(long gkPwHandle, long challenge, int userId) { in requestGatekeeperHat() method in GatekeeperPasswordProvider
|
D | BiometricUtils.java | 123 public static byte[] requestGatekeeperHat(@NonNull Context context, @NonNull Intent result, in requestGatekeeperHat() method in BiometricUtils 130 return requestGatekeeperHat(context, gatekeeperPasswordHandle, userId, challenge); in requestGatekeeperHat() 137 public static byte[] requestGatekeeperHat(@NonNull Context context, long gkPwHandle, int userId, in requestGatekeeperHat() method in BiometricUtils
|
D | BiometricEnrollIntroduction.java | 375 mToken = BiometricUtils.requestGatekeeperHat(this, data, mUserId, in onActivityResult() 395 mToken = BiometricUtils.requestGatekeeperHat(this, data, mUserId, in onActivityResult()
|
D | MultiBiometricEnrollHelper.java | 82 (challenge) -> BiometricUtils.requestGatekeeperHat(activity, gkPwHandle, in MultiBiometricEnrollHelper()
|
/packages/apps/Settings/src/com/android/settings/biometrics/combination/ |
D | BiometricsSettingsBase.java | 190 final byte[] token = requestGatekeeperHat(context, mGkPwHandle, mUserId, in onRetryPreferenceTreeClick() 232 final byte[] token = requestGatekeeperHat(context, mGkPwHandle, mUserId, in onRetryPreferenceTreeClick() 256 protected byte[] requestGatekeeperHat(@NonNull Context context, long gkPwHandle, int userId, in requestGatekeeperHat() method in BiometricsSettingsBase 258 return BiometricUtils.requestGatekeeperHat(context, gkPwHandle, userId, challenge); in requestGatekeeperHat()
|
/packages/apps/Settings/src/com/android/settings/biometrics2/ui/viewmodel/ |
D | AutoCredentialViewModel.java | 268 final byte[] newToken = requestGatekeeperHat(gkPwHandle, challenge, userId); in generateChallenge() 344 private byte[] requestGatekeeperHat(long gkPwHandle, long challenge, int userId) in requestGatekeeperHat() method in AutoCredentialViewModel
|
/packages/apps/Settings/src/com/android/settings/biometrics/face/ |
D | FaceEnrollIntroduction.java | 205 mToken = requestGatekeeperHat(challenge); in onCreate() 271 protected byte[] requestGatekeeperHat(long challenge) { in requestGatekeeperHat() method in FaceEnrollIntroduction 272 return BiometricUtils.requestGatekeeperHat(this, getIntent(), mUserId, challenge); in requestGatekeeperHat()
|
D | FaceSettings.java | 301 mToken = BiometricUtils.requestGatekeeperHat(getPrefContext(), data, mUserId, in onActivityResult()
|
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint2/domain/interactor/ |
D | FingerprintManagerInteractor.kt | 105 gatekeeperPasswordProvider.requestGatekeeperHat(intent, challenge, userId) in generateChallenge()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/biometrics/face/ |
D | FaceEnrollIntroductionTest.java | 147 public byte[] requestGatekeeperHat(long challenge) { in requestGatekeeperHat() method in FaceEnrollIntroductionTest.TestFaceEnrollIntroduction 155 return super.requestGatekeeperHat(challenge); in requestGatekeeperHat()
|
/packages/apps/Settings/tests/unit/src/com/android/settings/fingerprint2/domain/interactor/ |
D | FingerprintManagerInteractorTest.kt | 136 gateKeeperPasswordProvider.requestGatekeeperHat( in testGenerateChallenge()
|
/packages/apps/Settings/src/com/android/settings/biometrics/fingerprint/ |
D | FingerprintEnrollFindSensor.java | 140 mToken = BiometricUtils.requestGatekeeperHat(this, getIntent(), mUserId, challenge); in onCreate()
|
D | FingerprintEnrollIntroduction.java | 148 mToken = provider.requestGatekeeperHat(intent, challenge, mUserId); in onCreate()
|
D | FingerprintSettings.java | 903 mToken = provider.requestGatekeeperHat(data, challenge, in onActivityResult()
|