Home
last modified time | relevance | path

Searched refs:mHostAuthKeySend (Results 1 – 6 of 6) sorted by relevance

/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DAccount.java131 public long mHostAuthKeySend; field in Account
273 mHostAuthKeySend = cursor.getLong(CONTENT_HOST_AUTH_KEY_SEND_COLUMN); in restore()
448 if (mHostAuthKeySend != 0) { in getOrCreateHostAuthSend()
449 mHostAuthSend = HostAuth.restoreHostAuthWithId(context, mHostAuthKeySend); in getOrCreateHostAuthSend()
720 mHostAuthKeySend = newId; in save()
743 values.put(AccountColumns.HOST_AUTH_KEY_SEND, mHostAuthKeySend); in toContentValues()
837 if (mHostAuthKeySend != 0) { in ensureLoaded()
882 dest.writeLong(mHostAuthKeySend); in writeToParcel()
920 mHostAuthKeySend = in.readLong(); in Account()
/packages/apps/Email/tests/src/com/android/emailcommon/provider/
DAccountTest.java107 assertEquals(before.mHostAuthKeySend, after.mHostAuthKeySend); in testSerializeAndDeserializeWithJSON()
/packages/apps/Email/tests/src/com/android/email/provider/
DAccountBackupRestoreTests.java132 HostAuth send = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeySend); in testBackupAndRestore()
146 send = HostAuth.restoreHostAuthWithId(mMockContext, restored.mHostAuthKeySend); in testBackupAndRestore()
DProviderTestUtils.java59 account.mHostAuthKeySend = 0; in setupAccount()
299 assertEquals(caller + " mHostAuthKeySend", expect.mHostAuthKeySend, in assertAccountEqual()
300 actual.mHostAuthKeySend); in assertAccountEqual()
DProviderTests.java224 HostAuth.restoreHostAuthWithId(mMockContext, account1get.mHostAuthKeySend); in testAccountSaveHostAuth()
239 assertTrue(account.mHostAuthKeySend != 0); in testAccountGetHostAuthSend()
246 authTest = HostAuth.restoreHostAuthWithId(mMockContext, account.mHostAuthKeySend); in testAccountGetHostAuthSend()
256 account.mHostAuthKeySend = 0; in testAccountGetHostAuthSend()
2162 account.mHostAuthKeySend = recvAuth.mId; in createAccount()
2166 account.mHostAuthKeySend = sendAuth.mId; in createAccount()
/packages/apps/Email/provider_src/com/android/email/provider/
DEmailProvider.java1646 if (account.mHostAuthKeySend > 0) { in copyAccountTables()
1647 hostAuth = restoreHostAuth(fromDatabase, account.mHostAuthKeySend); in copyAccountTables()
1652 account.mHostAuthKeySend = toDatabase.insert( in copyAccountTables()