Home
last modified time | relevance | path

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

/aosp12/frameworks/base/apex/blobstore/service/java/com/android/server/blob/
H A DBlobStoreManagerService.java860 final AtomicFile blobsIndexFile = prepareBlobsIndexFile(); in writeBlobsInfoLocked() local
861 if (blobsIndexFile == null) { in writeBlobsInfoLocked()
867 fos = blobsIndexFile.startWrite(SystemClock.uptimeMillis()); in writeBlobsInfoLocked()
882 blobsIndexFile.finishWrite(fos); in writeBlobsInfoLocked()
887 blobsIndexFile.failWrite(fos); in writeBlobsInfoLocked()
898 final AtomicFile blobsIndexFile = prepareBlobsIndexFile(); in readBlobsInfoLocked() local
899 if (blobsIndexFile == null) { in readBlobsInfoLocked()
902 } else if (!blobsIndexFile.exists()) { in readBlobsInfoLocked()
903 Slog.w(TAG, "Blobs index file not available: " + blobsIndexFile.getBaseFile()); in readBlobsInfoLocked()
908 try (FileInputStream fis = blobsIndexFile.openRead()) { in readBlobsInfoLocked()