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.java61 public int mTotalBytes; field in class:BluetoothOppShareInfo
82 mTotalBytes = totalBytes;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DCacheStorageUsageInfo.java31 private long mTotalBytes; field in class:CacheStorageUsageInfo
67 mTotalBytes = blockSize * totalBlocks;
74 return mTotalBytes;
87 return mTotalBytes - mUsedBytes;
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DFileCache.java58 private long mTotalBytes; field in class:FileCache
120 mTotalBytes += entry.size;
124 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
151 mTotalBytes -= file.size;
207 if (cursor.moveToNext()) mTotalBytes = cursor.getLong(0);
211 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
220 && mTotalBytes > mCapacity && cursor.moveToNext()) {
233 mTotalBytes -= size;
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DDownloadCache.java79 private long mTotalBytes = 0; field in class:DownloadCache
186 if (mTotalBytes <= mCapacity) return;
191 && mTotalBytes > mCapacity && cursor.moveToNext()) {
202 mTotalBytes -= size;
217 mTotalBytes += size;
239 mTotalBytes = 0;
242 mTotalBytes = cursor.getLong(SUM_INDEX_SUM);
247 if (mTotalBytes > mCapacity) freeSomeSpaceIfNeed(MAX_DELETE_COUNT);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadInfo.java83 info.mTotalBytes = getLong(Downloads.Impl.COLUMN_TOTAL_BYTES);
212 public long mTotalBytes; field in class:DownloadInfo
431 if (mTotalBytes <= 0) {
438 if (maxBytesOverMobile != null && mTotalBytes > maxBytesOverMobile) {
444 && mTotalBytes > recommendedMaxBytesOverMobile) {
502 writer.print(" mTotalBytes="); writer.println(mTotalBytes);
H A DDownloadThread.java98 public long mTotalBytes = -1; field in class:DownloadThread.State
109 mTotalBytes = info.mTotalBytes;
240 if (state.mCurrentBytes == state.mTotalBytes) {
602 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, mInfo.mTotalBytes);
638 state.mTotalBytes = mInfo.mTotalBytes =
698 state.mTotalBytes + ", bytes recvd so far: " + state.mCurrentBytes);
878 if (mInfo.mTotalBytes != -1) {
879 innerState.mHeaderContentLength = Long.toString(mInfo.mTotalBytes);
[all...]

Completed in 193 milliseconds