HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentBytes (Results 1 - 8 of 8) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferInfo.java 46 long mCurrentBytes;
BluetoothOppShareInfo.java 65 public long mCurrentBytes;
85 mCurrentBytes = currentBytes;
BluetoothOppTransferActivity.java 448 Log.v(TAG, "mCurrentBytes: " + mTransInfo.mCurrentBytes + " mTotalBytes: "
449 + mTransInfo.mTotalBytes + " (" + (int) ((mTransInfo.mCurrentBytes * 100)
453 (int) ((mTransInfo.mCurrentBytes * 100) / mTransInfo.mTotalBytes));
459 mTransInfo.mCurrentBytes));
BluetoothOppService.java 270 println(sb, " " + format.format(date) + dir + info.mCurrentBytes + "/"
737 Log.v(TAG, "CURRENT : " + info.mCurrentBytes);
    [all...]
BluetoothOppUtility.java 100 info.mCurrentBytes =
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 153 public long mCurrentBytes;
174 mCurrentBytes = info.mCurrentBytes;
188 values.put(Downloads.Impl.COLUMN_CURRENT_BYTES, mCurrentBytes);
317 mInfoDelta.mTotalBytes = mInfoDelta.mCurrentBytes;
414 final boolean resuming = mInfoDelta.mCurrentBytes != 0;
576 Os.lseek(outFd, mInfoDelta.mCurrentBytes, OsConstants.SEEK_SET);
652 mInfoDelta.mCurrentBytes += len;
662 if (mInfoDelta.mTotalBytes != -1 && mInfoDelta.mCurrentBytes != mInfoDelta.mTotalBytes) {
664 + mInfoDelta.mCurrentBytes + " instead of " + mInfoDelta.mTotalBytes)
    [all...]
DownloadInfo.java 86 info.mCurrentBytes = getLong(Downloads.Impl.COLUMN_CURRENT_BYTES);
172 public long mCurrentBytes;
422 pw.printPair("mCurrentBytes", mCurrentBytes);
Helpers.java 170 if (info.mCurrentBytes > 0 && !TextUtils.isEmpty(info.mETag)) {
173 builder.setEstimatedNetworkBytes(info.mTotalBytes - info.mCurrentBytes);

Completed in 87 milliseconds