Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/src/com/android/providers/media/
DDatabaseHelper.java593 Optional<Long> nextRowIdFromXattrOptional = getNextRowIdFromXattr(); in tryRecoverDatabase() local
595 if (isLastUsedDatabaseSession(db) && nextRowIdFromXattrOptional.isPresent()) { in tryRecoverDatabase()
599 mNextRowIdBackup.set(nextRowIdFromXattrOptional.get()); in tryRecoverDatabase()
662 Optional<Long> nextRowIdFromXattrOptional = getNextRowIdFromXattr(); in tryRecoverRowIdSequence() local
663 if (isLastUsedDatabaseSession && nextRowIdFromXattrOptional.isPresent()) { in tryRecoverRowIdSequence()
666 mNextRowIdBackup.set(nextRowIdFromXattrOptional.get()); in tryRecoverRowIdSequence()
674 nextRowIdFromXattrOptional.isPresent())); in tryRecoverRowIdSequence()