Searched defs:newV (Results 1 - 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppProvider.java154 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { argument
156 if (newV == DB_VERSION_NOP_UPGRADE_TO) { // that's a no-op
166 + newV + ", which will destroy all old data");
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadProvider.java251 public void onUpgrade(final SQLiteDatabase db, int oldV, final int newV) { argument
259 + " to version " + newV + ", which will destroy all old data");
261 } else if (oldV > newV) {
265 + " (current version is " + newV + "), destroying all old data");
269 for (int version = oldV + 1; version <= newV; version++) {
/packages/providers/MediaProvider/src/com/android/providers/media/
H A DMediaProvider.java388 public void onUpgrade(final SQLiteDatabase db, final int oldV, final int newV) { argument
390 updateDatabase(mContext, db, mInternal, oldV, newV);

Completed in 178 milliseconds