Home
last modified time | relevance | path

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

/packages/apps/Gallery2/src/com/android/gallery3d/data/
DLocalMediaItem.java39 public long fileSize; field in LocalMediaItem
93 if (fileSize > 0) details.addDetail(MediaDetails.INDEX_SIZE, fileSize); in getDetails()
103 return fileSize; in getSize()
DLocalImage.java121 fileSize = cursor.getLong(INDEX_SIZE); in loadFromCursor()
143 fileSize = uh.update(fileSize, cursor.getLong(INDEX_SIZE)); in updateFromCursor()
271 fileSize = new File(filePath).length(); in rotate()
272 values.put(Images.Media.SIZE, fileSize); in rotate()
DLocalVideo.java111 fileSize = cursor.getLong(INDEX_SIZE); in loadFromCursor()
147 fileSize = uh.update(fileSize, cursor.getLong(INDEX_SIZE)); in updateFromCursor()
/packages/apps/Contacts/src/com/android/contacts/util/
DStreamItemPhotoEntry.java38 int height, int width, int fileSize) { in StreamItemPhotoEntry() argument
45 mFileSize = fileSize; in StreamItemPhotoEntry()
/packages/apps/Browser/src/com/android/browser/
DBrowserBackupAgent.java210 private void writeBackupState(long fileSize, long crc, ParcelFileDescriptor stateFile) in writeBackupState() argument
215 out.writeLong(fileSize); in writeBackupState()
/packages/apps/Settings/src/com/android/settings/deviceinfo/
DStorageMeasurement.java511 final long fileSize = files[i].length(); in measureSizesOfMisc() local
512 mFileInfoForMisc.add(new FileInfo(path, fileSize, counter++)); in measureSizesOfMisc()
513 mMiscSize += fileSize; in measureSizesOfMisc()
/packages/apps/SoundRecorder/src/com/android/soundrecorder/
DSoundRecorder.java150 long fileSize = mRecordingFile.length(); in timeRemaining() local
151 if (mFileSizeChangedTime == -1 || fileSize != mLastFileSize) { in timeRemaining()
153 mLastFileSize = fileSize; in timeRemaining()
156 long result2 = (mMaxBytes - fileSize)/mBytesPerSecond; in timeRemaining()
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
DContactAggregator.java2106 final int fileSize; field in ContactAggregator.PhotoEntry
2108 private PhotoEntry(int pixelCount, int fileSize) { in PhotoEntry() argument
2110 this.fileSize = fileSize; in PhotoEntry()
2119 return pe.fileSize - fileSize; in compareTo()