Home | History | Annotate | Download | only in provider

Lines Matching refs:AccountColumns

51 import com.android.emailcommon.provider.EmailContent.AccountColumns;
328 " where " + EmailContent.RECORD_ID + "=old." + AccountColumns.HOST_AUTH_KEY_RECV +
330 " where " + EmailContent.RECORD_ID + "=old." + AccountColumns.HOST_AUTH_KEY_SEND +
332 " where " + EmailContent.RECORD_ID + "=old." + AccountColumns.POLICY_KEY +
608 + AccountColumns.DISPLAY_NAME + " text, "
609 + AccountColumns.EMAIL_ADDRESS + " text, "
610 + AccountColumns.SYNC_KEY + " text, "
611 + AccountColumns.SYNC_LOOKBACK + " integer, "
612 + AccountColumns.SYNC_INTERVAL + " text, "
613 + AccountColumns.HOST_AUTH_KEY_RECV + " integer, "
614 + AccountColumns.HOST_AUTH_KEY_SEND + " integer, "
615 + AccountColumns.FLAGS + " integer, "
616 + AccountColumns.IS_DEFAULT + " integer, "
617 + AccountColumns.COMPATIBILITY_UUID + " text, "
618 + AccountColumns.SENDER_NAME + " text, "
619 + AccountColumns.RINGTONE_URI + " text, "
620 + AccountColumns.PROTOCOL_VERSION + " text, "
621 + AccountColumns.NEW_MESSAGE_COUNT + " integer, "
622 + AccountColumns.SECURITY_FLAGS + " integer, "
623 + AccountColumns.SECURITY_SYNC_KEY + " text, "
624 + AccountColumns.SIGNATURE + " text, "
625 + AccountColumns.POLICY_KEY + " integer, "
626 + AccountColumns.NOTIFIED_MESSAGE_ID + " integer, "
627 + AccountColumns.NOTIFIED_MESSAGE_COUNT + " integer"
852 deleteUnlinked(mDatabase, Mailbox.TABLE_NAME, MailboxColumns.ACCOUNT_KEY, AccountColumns.ID,
854 deleteUnlinked(mDatabase, Message.TABLE_NAME, MessageColumns.ACCOUNT_KEY, AccountColumns.ID,
856 deleteUnlinked(mDatabase, Policy.TABLE_NAME, PolicyColumns.ID, AccountColumns.POLICY_KEY,
1137 + " add column " + AccountColumns.SECURITY_FLAGS + " integer" + ";");
1148 + " add column " + AccountColumns.SECURITY_SYNC_KEY + " text" + ";");
1150 + " add column " + AccountColumns.SIGNATURE + " text" + ";");
2401 new String[] {EmailContent.RECORD_ID /*0*/, AccountColumns.SECURITY_FLAGS /*1*/},
2402 AccountColumns.SECURITY_FLAGS + ">0", null, null, null, null);
2409 cv.put(AccountColumns.POLICY_KEY, policyId);
2410 cv.putNull(AccountColumns.SECURITY_FLAGS);
2444 + Account.TABLE_NAME + "." + AccountColumns.ID + " AND "
2445 + Account.TABLE_NAME + "." + AccountColumns.HOST_AUTH_KEY_RECV + "="
2473 new String[] {AccountColumns.HOST_AUTH_KEY_RECV, AccountColumns.EMAIL_ADDRESS};
2581 new String[] {AccountColumns.ID, AccountColumns.FLAGS, AccountColumns.HOST_AUTH_KEY_RECV};
2611 cv.put(AccountColumns.FLAGS, flags | Account.FLAGS_SUPPORTS_SEARCH);