Searched refs:toDatabase (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Email/src/com/android/email/provider/
H A DEmailProvider.java1966 * @param toDatabase the destination database
1969 private static int copyAccountTables(SQLiteDatabase fromDatabase, SQLiteDatabase toDatabase) { argument
1970 if (fromDatabase == null || toDatabase == null) return -1;
1976 toDatabase.beginTransaction();
1978 toDatabase.delete(Account.TABLE_NAME, null, null);
1979 toDatabase.delete(HostAuth.TABLE_NAME, null, null);
2002 account.mHostAuthKeyRecv = toDatabase.insert(HostAuth.TABLE_NAME, null,
2010 account.mHostAuthKeySend = toDatabase.insert(HostAuth.TABLE_NAME, null,
2014 toDatabase.insert(Account.TABLE_NAME, null, account.toContentValues());
2024 toDatabase
[all...]

Completed in 27 milliseconds