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 93 info.mCurrentBytes = getLong(Downloads.Impl.COLUMN_CURRENT_BYTES);
227 public long mCurrentBytes;
533 pw.printPair("mCurrentBytes", mCurrentBytes);
DownloadThread.java 123 public long mCurrentBytes = 0;
149 mCurrentBytes = info.mCurrentBytes;
294 if (state.mCurrentBytes == state.mTotalBytes) {
469 state.mCurrentBytes += bytesRead;
473 Log.v(Constants.TAG, "downloaded " + state.mCurrentBytes + " for "
534 final long sampleSpeed = ((state.mCurrentBytes - state.mSpeedSampleBytes) * 1000)
549 state.mSpeedSampleBytes = state.mCurrentBytes;
552 if (state.mCurrentBytes - state.mBytesNotified > Constants.MIN_PROGRESS_STEP &&
555 values.put(Downloads.Impl.COLUMN_CURRENT_BYTES, state.mCurrentBytes);
    [all...]

Completed in 65 milliseconds