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

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferInfo.java 46 int mCurrentBytes;
BluetoothOppShareInfo.java 65 public int mCurrentBytes;
85 mCurrentBytes = currentBytes;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 94 info.mCurrentBytes = getLong(Downloads.Impl.COLUMN_CURRENT_BYTES);
229 public long mCurrentBytes;
549 pw.printPair("mCurrentBytes", mCurrentBytes);
DownloadThread.java 129 public long mCurrentBytes;
142 mCurrentBytes = info.mCurrentBytes;
159 values.put(Downloads.Impl.COLUMN_CURRENT_BYTES, mCurrentBytes);
246 mInfoDelta.mTotalBytes = mInfoDelta.mCurrentBytes;
326 final boolean resuming = mInfoDelta.mCurrentBytes != 0;
480 Os.lseek(outFd, mInfoDelta.mCurrentBytes, OsConstants.SEEK_SET);
543 final long newBytes = (mInfoDelta.mCurrentBytes + len) - curSize;
551 mInfoDelta.mCurrentBytes += len;
563 if (mInfoDelta.mTotalBytes != -1 && mInfoDelta.mCurrentBytes != mInfoDelta.mTotalBytes)
    [all...]

Completed in 90 milliseconds