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 63 public int mCurrentBytes;
83 mCurrentBytes = currentBytes;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadInfo.java 84 info.mCurrentBytes = getLong(Downloads.Impl.COLUMN_CURRENT_BYTES);
213 public long mCurrentBytes;
500 writer.print(" mCurrentBytes="); writer.print(mCurrentBytes);
DownloadThread.java 99 public long mCurrentBytes = 0;
110 mCurrentBytes = info.mCurrentBytes;
240 if (state.mCurrentBytes == state.mTotalBytes) {
302 state.mCurrentBytes += bytesRead;
306 Log.v(Constants.TAG, "downloaded " + state.mCurrentBytes + " for "
414 if (state.mCurrentBytes - state.mBytesNotified > Constants.MIN_PROGRESS_STEP &&
417 values.put(Downloads.Impl.COLUMN_CURRENT_BYTES, state.mCurrentBytes);
419 state.mBytesNotified = state.mCurrentBytes;
471 values.put(Downloads.Impl.COLUMN_CURRENT_BYTES, state.mCurrentBytes);
    [all...]

Completed in 220 milliseconds