Home
last modified time | relevance | path

Searched refs:nextRowId (Results 1 – 2 of 2) sorted by relevance

/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/
DChangeLogsRequestHelper.java150 public static String getNextPageToken(TokenRequest changeLogTokenRequest, long nextRowId) { in getNextPageToken() argument
160 contentValues.put(ROW_ID_CHANGE_LOGS_TABLE_COLUMN_NAME, nextRowId); in getNextPageToken()
/packages/providers/MediaProvider/src/com/android/providers/media/
DDatabaseHelper.java2422 long nextRowId = nextRowIdOptional.orElse(NEXT_ROW_ID_DEFAULT_BILLION_VALUE); in updateNextRowIdInDatabaseAndExternalStorage() local
2424 backupNextRowId(nextRowId); in updateNextRowIdInDatabaseAndExternalStorage()
2426 db.execSQL(String.format(Locale.ROOT, "INSERT INTO files(_ID) VALUES (%d)", nextRowId)); in updateNextRowIdInDatabaseAndExternalStorage()
2427 db.execSQL(String.format(Locale.ROOT, "DELETE FROM files WHERE _ID=%d", nextRowId)); in updateNextRowIdInDatabaseAndExternalStorage()
2429 mName, nextRowId)); in updateNextRowIdInDatabaseAndExternalStorage()
2436 protected void backupNextRowId(long nextRowId) { in backupNextRowId() argument
2437 long backupId = nextRowId + getNextRowIdBackupFrequency(); in backupNextRowId()