Searched refs:mTotalBytes (Results 1 - 12 of 12) 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;
H A DBluetoothOppTransferActivity.java275 mTransInfo.mTotalBytes));
294 this, mTransInfo.mTotalBytes));
313 mTransInfo.mTotalBytes));
427 if (mTransInfo.mTotalBytes == 0) {
432 mProgressTransfer.setMax(mTransInfo.mTotalBytes);
437 mPercentView.setText(BluetoothOppUtility.formatProgressText(mTransInfo.mTotalBytes,
H A DBluetoothOppIncomingFileConfirmActivity.java133 mTransInfo.mFileName, Formatter.formatFileSize(this, mTransInfo.mTotalBytes));
H A DBluetoothOppUtility.java73 info.mTotalBytes = cursor.getInt(cursor
H A DBluetoothOppService.java549 Log.v(TAG, "TOTAL : " + info.mTotalBytes);
689 info.mTotalBytes = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES));
/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 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...]
H A DDownloadInfo.java83 info.mTotalBytes = getLong(Downloads.Impl.COLUMN_TOTAL_BYTES);
212 public long mTotalBytes; field in class:DownloadInfo
430 if (mTotalBytes <= 0) {
437 if (maxBytesOverMobile != null && mTotalBytes > maxBytesOverMobile) {
443 && mTotalBytes > recommendedMaxBytesOverMobile) {
501 writer.print(" mTotalBytes="); writer.println(mTotalBytes);
H A DDownloadNotification.java119 long max = download.mTotalBytes;

Completed in 245 milliseconds