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()
3412 db.execSQL("INSERT INTO " + Tables.REMINDERS in copyEventRelatedTables()
3416 + " FROM " + Tables.REMINDERS in copyEventRelatedTables()
DCalendarProvider2.java227 Tables.REMINDERS + "." + Reminders._ID + "=? AND " +
228 Tables.EVENTS + "." + Events._ID + "=" + Tables.REMINDERS + "." + Reminders.EVENT_ID +
961 case REMINDERS: in queryInternal()
962 qb.setTables(Tables.REMINDERS); in queryInternal()
965 qb.setTables(Tables.REMINDERS + ", " + Tables.EVENTS + ", " + Tables.CALENDARS); in queryInternal()
1462 case REMINDERS: in getType()
2287 case REMINDERS: { in insertInTransaction()
3138 case REMINDERS: in deleteInTransaction()
3281 mDb.delete(Tables.REMINDERS, SQL_WHERE_EVENT_ID, selectionArgs); in deleteEventInternal()
3420 int delCount = mDb.delete(Tables.REMINDERS, selection, selectionArgs); in deleteReminders()
[all …]
DCalendarAlarmManager.java82 + " LEFT OUTER JOIN " + Tables.REMINDERS + " AS r ON"
341 + Instances.EVENT_ID + ")" + " INNER JOIN " + Tables.REMINDERS + " ON (" in scheduleNextAlarmLocked()
342 + Tables.INSTANCES + "." + Instances.EVENT_ID + "=" + Tables.REMINDERS + "." in scheduleNextAlarmLocked()