Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/biometrics/
DHardwareAuthTokenUtilsTest.java60 hardwareAuthToken.authenticatorType = testAuthenticatorType; in testHardwareAuthTokenLoopBack()
76 assertEquals(testAuthenticatorType, hardwareAuthToken2.authenticatorType); in testHardwareAuthTokenLoopBack()
/frameworks/base/services/core/java/com/android/server/biometrics/
DHardwareAuthTokenUtils.java47 writeInt(flipIfNativelyLittle(hat.authenticatorType), array, 25 /* offset */); in toByteArray()
72 hardwareAuthToken.authenticatorType = flipIfNativelyLittle(getInt(array, 25 /* offset */)); in toHardwareAuthToken()
/frameworks/base/keystore/java/android/security/keystore2/
DAndroidKeyStoreSecretKeyFactorySpi.java150 int authenticatorType = a.keyParameter.value.getHardwareAuthenticatorType(); in getKeyInfo() local
152 keymasterHwEnforcedUserAuthenticators = authenticatorType; in getKeyInfo()
154 keymasterSwEnforcedUserAuthenticators = authenticatorType; in getKeyInfo()
DAndroidKeyStoreSpi.java991 authenticatorSpec.authenticatorType = HardwareAuthenticatorType.PASSWORD; in setWrappedKeyEntry()
997 authSpec.authenticatorType = HardwareAuthenticatorType.FINGERPRINT; in setWrappedKeyEntry()
/frameworks/base/keystore/java/android/security/
DAuthTokenUtils.java58 hardwareAuthToken.authenticatorType = in toHardwareAuthToken()
/frameworks/base/core/java/android/hardware/biometrics/
DBiometricManager.java223 @NonNull public static String authenticatorToStr(@Authenticators.Types int authenticatorType) { in authenticatorToStr() argument
224 switch(authenticatorType) { in authenticatorToStr()
234 return "Unknown authenticator type: " + authenticatorType; in authenticatorToStr()
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
DAccountsDbTest.java271 String authenticatorType = "authType"; in testMetaInsertFindDelete() local
272 mAccountsDb.insertOrReplaceMetaAuthTypeAndUid(authenticatorType, testUid); in testMetaInsertFindDelete()
275 assertEquals(testUid, (int)metaAuthUid.get(authenticatorType)); in testMetaInsertFindDelete()
278 boolean deleteResult = mAccountsDb.deleteMetaByAuthTypeAndUid(authenticatorType, testUid); in testMetaInsertFindDelete()
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountsDb.java1035 long insertOrReplaceMetaAuthTypeAndUid(String authenticatorType, int uid) { in insertOrReplaceMetaAuthTypeAndUid() argument
1039 META_KEY_FOR_AUTHENTICATOR_UID_FOR_TYPE_PREFIX + authenticatorType); in insertOrReplaceMetaAuthTypeAndUid()
1165 static long insertMetaAuthTypeAndUid(SQLiteDatabase db, String authenticatorType, int uid) { in insertMetaAuthTypeAndUid() argument
1168 META_KEY_FOR_AUTHENTICATOR_UID_FOR_TYPE_PREFIX + authenticatorType); in insertMetaAuthTypeAndUid()
DAccountManagerService.java5377 private boolean bindToAuthenticator(String authenticatorType) {
5380 AuthenticatorDescription.newKey(authenticatorType), mAccounts.userId);
5382 Log.w(TAG, "there is no authenticator for " + authenticatorType