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 long mCurrentBytes;
BluetoothOppShareInfo.java 65 public long mCurrentBytes;
85 mCurrentBytes = currentBytes;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 86 info.mCurrentBytes = getLong(Downloads.Impl.COLUMN_CURRENT_BYTES);
172 public long mCurrentBytes;
422 pw.printPair("mCurrentBytes", mCurrentBytes);
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...]

Completed in 527 milliseconds