Searched defs:mTotalBytes (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppTransferInfo.java44 int mTotalBytes; field in class:BluetoothOppTransferInfo
H A DBluetoothOppShareInfo.java63 public int mTotalBytes; field in class:BluetoothOppShareInfo
84 mTotalBytes = totalBytes;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DCacheStorageUsageInfo.java32 private long mTotalBytes; field in class:CacheStorageUsageInfo
68 mTotalBytes = blockSize * totalBlocks;
75 return mTotalBytes;
88 return mTotalBytes - mUsedBytes;
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DFileCache.java58 private long mTotalBytes; field in class:FileCache
121 mTotalBytes += entry.size;
125 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
152 mTotalBytes -= file.size;
207 if (cursor.moveToNext()) mTotalBytes = cursor.getLong(0);
211 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
224 && mTotalBytes > mCapacity && cursor.moveToNext()) {
237 mTotalBytes -= size;
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDownloadCache.java78 private long mTotalBytes = 0; field in class:DownloadCache
159 if (mTotalBytes <= mCapacity) return;
164 && mTotalBytes > mCapacity && cursor.moveToNext()) {
175 mTotalBytes -= size;
190 mTotalBytes += size;
212 mTotalBytes = 0;
215 mTotalBytes = cursor.getLong(SUM_INDEX_SUM);
220 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadThread.java124 public long mTotalBytes = -1; field in class:DownloadThread.State
150 mTotalBytes = info.mTotalBytes;
301 if (state.mCurrentBytes == state.mTotalBytes) {
696 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, mInfo.mTotalBytes);
722 state.mTotalBytes = state.mContentLength;
723 mInfo.mTotalBytes = state.mContentLength;
800 if (mInfo.mTotalBytes != -1) {
801 state.mContentLength = mInfo.mTotalBytes;
H A DDownloadInfo.java92 info.mTotalBytes = getLong(Downloads.Impl.COLUMN_TOTAL_BYTES);
226 public long mTotalBytes; field in class:DownloadInfo
431 if (mTotalBytes <= 0) {
438 if (maxBytesOverMobile != null && mTotalBytes > maxBytesOverMobile) {
444 && mTotalBytes > recommendedMaxBytesOverMobile) {
534 pw.printPair("mTotalBytes", mTotalBytes);

Completed in 875 milliseconds