Home
last modified time | relevance | path

Searched refs:LAST_NOTIFIED_MESSAGE_COUNT (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Email/provider_src/com/android/email/provider/
DDBHelper.java611 + MailboxColumns.LAST_NOTIFIED_MESSAGE_COUNT + " integer not null default 0, " in createMailboxTable()
1126 + " add column " + Mailbox.LAST_NOTIFIED_MESSAGE_COUNT + " integer;"); in onUpgrade()
1129 db.execSQL("update Mailbox set " + Mailbox.LAST_NOTIFIED_MESSAGE_COUNT + in onUpgrade()
1130 "=0 where " + Mailbox.LAST_NOTIFIED_MESSAGE_COUNT + " IS NULL"); in onUpgrade()
1851 db.execSQL("update Mailbox set " + Mailbox.LAST_NOTIFIED_MESSAGE_COUNT + in upgradeToEmail2()
1852 "=0 where " + Mailbox.LAST_NOTIFIED_MESSAGE_COUNT + " IS NULL"); in upgradeToEmail2()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/provider/
DEmailContent.java1791 public static final String LAST_NOTIFIED_MESSAGE_COUNT = "lastNotifiedMessageCount"; field