Home
last modified time | relevance | path

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

/packages/providers/MediaProvider/src/com/android/providers/media/dao/
DFileRow.java110 FileRow fileRow = new FileRow(this.mId); in build() local
111 fileRow.mPath = this.mPath; in build()
112 fileRow.mOwnerPackageName = this.mOwnerPackageName; in build()
113 fileRow.mVolumeName = this.mVolumeName; in build()
114 fileRow.mMediaType = this.mMediaType; in build()
115 fileRow.mIsDownload = this.mIsDownload; in build()
116 fileRow.mIsPending = this.mIsPending; in build()
117 fileRow.mIsTrashed = this.mIsTrashed; in build()
118 fileRow.mIsFavorite = this.mIsFavorite; in build()
119 fileRow.mSpecialFormat = this.mSpecialFormat; in build()
[all …]
/packages/providers/MediaProvider/src/com/android/providers/media/
DDatabaseBackupAndRecovery.java993 Optional<BackupIdRow> fileRow = readDataFromBackup(volumeName, filePath); in recoverData() local
994 if (fileRow.isPresent()) { in recoverData()
995 if (fileRow.get().getIsDirty()) { in recoverData()
1000 if(insertDataInDatabase(db, fileRow.get(), filePath, volumeName)) { in recoverData()