Home | History | Annotate | Download | only in launcher2

Lines Matching defs:update

195     public int update(Uri uri, ContentValues values, String selection, String[] selectionArgs) {
199 int count = db.update(args.table, values, args.where, args.args);
540 db.execSQL("UPDATE favorites SET screen=(screen + 1);");
581 // We bumped the version three time during JB, once to update the launch flags, once to
582 // update the override for the default launch animation and once to set the mimetype
685 db.update(TABLE_FAVORITES, values, updateWhere, null);
715 SQLiteStatement update = null;
718 update = db.compileStatement("UPDATE favorites "
735 update.bindLong(1, id);
738 update.bindBlob(2, data);
739 update.execute();
757 if (update != null) {
758 update.close();
828 // Allocate and update database with new appWidgetId
850 db.update(TABLE_FAVORITES, values, updateWhere, null);