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()
3421 db.execSQL("INSERT INTO " + Tables.REMINDERS in copyEventRelatedTables()
3425 + " FROM " + Tables.REMINDERS in copyEventRelatedTables()
DCalendarProvider2.java233 Tables.REMINDERS + "." + Reminders._ID + "=? AND " +
234 Tables.EVENTS + "." + Events._ID + "=" + Tables.REMINDERS + "." + Reminders.EVENT_ID +
990 case REMINDERS: in queryInternal()
991 qb.setTables(Tables.REMINDERS); in queryInternal()
994 qb.setTables(Tables.REMINDERS + ", " + Tables.EVENTS + ", " + Tables.CALENDARS); in queryInternal()
1498 case REMINDERS: in getType()
2317 case REMINDERS: in insertInTransaction()
3147 case REMINDERS: in deleteInTransaction()
3290 mDb.delete(Tables.REMINDERS, SQL_WHERE_EVENT_ID, selectionArgs); in deleteEventInternal()
3429 int delCount = mDb.delete(Tables.REMINDERS, selection, selectionArgs); in deleteReminders()
[all …]
DCalendarAlarmManager.java72 + " LEFT OUTER JOIN " + Tables.REMINDERS + " AS r ON"
338 + Instances.EVENT_ID + ")" + " INNER JOIN " + Tables.REMINDERS + " ON (" in scheduleNextAlarmLocked()
339 + Tables.INSTANCES + "." + Instances.EVENT_ID + "=" + Tables.REMINDERS + "." in scheduleNextAlarmLocked()