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.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.java5038 private boolean bindToAuthenticator(String authenticatorType) {
5041 AuthenticatorDescription.newKey(authenticatorType), mAccounts.userId);
5044 Log.v(TAG, "there is no authenticator for " + authenticatorType