Searched refs:INSTANCES_TABLE_NAME (Results 1 - 2 of 2) sorted by relevance

/packages/apps/DeskClock/src/com/android/deskclock/provider/
H A DClockProvider.java77 qb.setTables(ClockDatabaseHelper.INSTANCES_TABLE_NAME);
80 qb.setTables(ClockDatabaseHelper.INSTANCES_TABLE_NAME);
144 count = db.update(ClockDatabaseHelper.INSTANCES_TABLE_NAME, values,
173 rowId = db.insert(ClockDatabaseHelper.INSTANCES_TABLE_NAME, null, initialValues);
207 count = db.delete(ClockDatabaseHelper.INSTANCES_TABLE_NAME, where, whereArgs);
217 count = db.delete(ClockDatabaseHelper.INSTANCES_TABLE_NAME, where, whereArgs);
H A DClockDatabaseHelper.java65 static final String INSTANCES_TABLE_NAME = "alarm_instances"; field in class:ClockDatabaseHelper
83 db.execSQL("CREATE TABLE " + INSTANCES_TABLE_NAME + " (" +
146 db.execSQL("DROP TABLE IF EXISTS " + INSTANCES_TABLE_NAME + ";");
189 db.insert(INSTANCES_TABLE_NAME, null,

Completed in 70 milliseconds