Home
last modified time | relevance | path

Searched refs:authenticatorType (Results 1 – 8 of 8) 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.java152 int authenticatorType = a.keyParameter.value.getHardwareAuthenticatorType(); in getKeyInfo() local
154 keymasterHwEnforcedUserAuthenticators = authenticatorType; in getKeyInfo()
156 keymasterSwEnforcedUserAuthenticators = authenticatorType; in getKeyInfo()
DAndroidKeyStoreSpi.java886 authenticatorSpec.authenticatorType = HardwareAuthenticatorType.PASSWORD; in setWrappedKeyEntry()
892 authSpec.authenticatorType = HardwareAuthenticatorType.FINGERPRINT; in setWrappedKeyEntry()
/frameworks/base/keystore/java/android/security/
DAuthTokenUtils.java58 hardwareAuthToken.authenticatorType = in toHardwareAuthToken()
/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
DAccountsDbTest.java273 String authenticatorType = "authType"; in testMetaInsertFindDelete() local
274 mAccountsDb.insertOrReplaceMetaAuthTypeAndUid(authenticatorType, testUid); in testMetaInsertFindDelete()
277 assertEquals(testUid, (int)metaAuthUid.get(authenticatorType)); in testMetaInsertFindDelete()
280 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.java5126 private boolean bindToAuthenticator(String authenticatorType) {
5129 AuthenticatorDescription.newKey(authenticatorType), mAccounts.userId);
5132 Log.v(TAG, "there is no authenticator for " + authenticatorType