Searched refs:nextRowId (Results 1 – 2 of 2) sorted by relevance
150 public static String getNextPageToken(TokenRequest changeLogTokenRequest, long nextRowId) { in getNextPageToken() argument160 contentValues.put(ROW_ID_CHANGE_LOGS_TABLE_COLUMN_NAME, nextRowId); in getNextPageToken()
2422 long nextRowId = nextRowIdOptional.orElse(NEXT_ROW_ID_DEFAULT_BILLION_VALUE); in updateNextRowIdInDatabaseAndExternalStorage() local2424 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() argument2437 long backupId = nextRowId + getNextRowIdBackupFrequency(); in backupNextRowId()