Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/accounts/
DAccountsDbTest.java253 String authenticatorType = "authType"; in testMetaInsertFindDelete() local
254 mAccountsDb.insertOrReplaceMetaAuthTypeAndUid(authenticatorType, testUid); in testMetaInsertFindDelete()
257 assertEquals(testUid, (int)metaAuthUid.get(authenticatorType)); in testMetaInsertFindDelete()
260 boolean deleteResult = mAccountsDb.deleteMetaByAuthTypeAndUid(authenticatorType, testUid); in testMetaInsertFindDelete()
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountsDb.java1016 long insertOrReplaceMetaAuthTypeAndUid(String authenticatorType, int uid) { in insertOrReplaceMetaAuthTypeAndUid() argument
1020 META_KEY_FOR_AUTHENTICATOR_UID_FOR_TYPE_PREFIX + authenticatorType); in insertOrReplaceMetaAuthTypeAndUid()
1146 static long insertMetaAuthTypeAndUid(SQLiteDatabase db, String authenticatorType, int uid) { in insertMetaAuthTypeAndUid() argument
1149 META_KEY_FOR_AUTHENTICATOR_UID_FOR_TYPE_PREFIX + authenticatorType); in insertMetaAuthTypeAndUid()
DAccountManagerService.java5015 private boolean bindToAuthenticator(String authenticatorType) {
5018 AuthenticatorDescription.newKey(authenticatorType), mAccounts.userId);
5021 Log.v(TAG, "there is no authenticator for " + authenticatorType