Searched refs:mTotalBytes (Results 1 - 9 of 9) 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.java276 mTransInfo.mTotalBytes));
295 this, mTransInfo.mTotalBytes));
314 mTransInfo.mTotalBytes));
428 if (mTransInfo.mTotalBytes == 0) {
433 mProgressTransfer.setMax(mTransInfo.mTotalBytes);
438 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.java551 Log.v(TAG, "TOTAL : " + info.mTotalBytes);
691 info.mTotalBytes = cursor.getInt(cursor.getColumnIndexOrThrow(BluetoothShare.TOTAL_BYTES));
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadInfo.java83 info.mTotalBytes = getLong(Downloads.Impl.COLUMN_TOTAL_BYTES);
232 public long mTotalBytes; field in class:DownloadInfo
436 if (mTotalBytes <= 0) {
443 if (maxBytesOverMobile != null && mTotalBytes > maxBytesOverMobile) {
449 && mTotalBytes > recommendedMaxBytesOverMobile) {
513 Log.v(Constants.TAG, "TOTAL : " + mTotalBytes);
H A DDownloadThread.java584 values.put(Downloads.Impl.COLUMN_TOTAL_BYTES, mInfo.mTotalBytes);
620 mInfo.mTotalBytes = Long.parseLong(innerState.mHeaderContentLength);
821 if (mInfo.mTotalBytes != -1) {
822 innerState.mHeaderContentLength = Long.toString(mInfo.mTotalBytes);
H A DDownloadNotification.java120 long max = download.mTotalBytes;

Completed in 81 milliseconds