Searched refs:TABLE_WIDGETS (Results 1 – 1 of 1) sorted by relevance
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/ |
D | WidgetDatabaseHelper.java | 41 private static final String TABLE_WIDGETS = "widgets"; field in WidgetDatabaseHelper 95 db.execSQL("CREATE TABLE " + TABLE_WIDGETS + " (" in onCreate() 150 db.insert(TABLE_WIDGETS, null, values); in restoreData() 169 db.execSQL("DROP TABLE IF EXISTS " + TABLE_WIDGETS); in onUpgrade() 196 db.replaceOrThrow(TABLE_WIDGETS, null, values); in setPhoto() 210 getWritableDatabase().replaceOrThrow(TABLE_WIDGETS, null, values); in setWidget() 222 cursor = db.query(TABLE_WIDGETS, PROJECTION, in getEntry() 242 cursor = db.query(TABLE_WIDGETS, PROJECTION, in getEntries() 274 getWritableDatabase().insert(TABLE_WIDGETS, null, values); in updateEntry() 286 db.delete(TABLE_WIDGETS, WHERE_APPWIDGET_ID, in deleteEntry()
|