Home
last modified time | relevance | path

Searched refs:REMINDERS (Results 1 – 3 of 3) sorted by relevance

/packages/providers/CalendarProvider/src/com/android/providers/calendar/
DCalendarDatabaseHelper.java147 public static final String REMINDERS = "Reminders"; field
175 "DELETE FROM " + Tables.REMINDERS +
242 Tables.REMINDERS + " LEFT OUTER JOIN " + Tables.EVENTS + " ON " +
335 mRemindersInserter = new DatabaseUtils.InsertHelper(db, Tables.REMINDERS); in onOpen()
448 db.execSQL("CREATE TABLE " + Tables.REMINDERS + " (" + in bootstrapDB()
456 db.execSQL("CREATE INDEX remindersEventIdIndex ON " + Tables.REMINDERS + " (" + in bootstrapDB()
1145 Attendees._ID + ", " + Reminders.EVENT_ID + " FROM " + Tables.REMINDERS + in removeOrphans()
1169 count = db.delete(Tables.REMINDERS, WHERE_REMINDERS_ORPHANS, null); in removeOrphans()
3418 db.execSQL("INSERT INTO " + Tables.REMINDERS in copyEventRelatedTables()
3422 + " FROM " + Tables.REMINDERS in copyEventRelatedTables()
DCalendarAlarmManager.java72 + " LEFT OUTER JOIN " + Tables.REMINDERS + " AS r ON"
321 + Instances.EVENT_ID + ")" + " INNER JOIN " + Tables.REMINDERS + " ON (" in scheduleNextAlarmLocked()
322 + Tables.INSTANCES + "." + Instances.EVENT_ID + "=" + Tables.REMINDERS + "." in scheduleNextAlarmLocked()
DCalendarProvider2.java245 Tables.REMINDERS + "." + Reminders._ID + "=? AND " +
246 Tables.EVENTS + "." + Events._ID + "=" + Tables.REMINDERS + "." + Reminders.EVENT_ID +
1164 case REMINDERS: in queryInternal()
1165 qb.setTables(Tables.REMINDERS); in queryInternal()
1168 qb.setTables(Tables.REMINDERS + ", " + Tables.EVENTS + ", " + Tables.CALENDARS); in queryInternal()
1665 case REMINDERS: in getType()
2562 case REMINDERS: { in insertInTransactionInner()
3426 case REMINDERS: in deleteInTransactionInner()
3569 mDb.delete(Tables.REMINDERS, SQL_WHERE_EVENT_ID, selectionArgs); in deleteEventInternal()
3708 int delCount = mDb.delete(Tables.REMINDERS, selection, selectionArgs); in deleteReminders()
[all …]