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

  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppShareInfo.java 73 long totalBytes, long currentBytes, long timestamp, boolean mediaScanned) {
85 mCurrentBytes = currentBytes;
BluetoothOppUtility.java 269 public static String formatProgressText(long totalBytes, long currentBytes) {
273 long progress = currentBytes * 100 / totalBytes;
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 757 final long currentBytes = mInfoDelta.mCurrentBytes;
761 final long sampleSpeed = ((currentBytes - mSpeedSampleBytes) * 1000)
776 mSpeedSampleBytes = currentBytes;
779 final long bytesDelta = currentBytes - mLastUpdateBytes;
788 mLastUpdateBytes = currentBytes;
    [all...]
DownloadNotifier.java 277 final long currentBytes = cursor.getLong(UpdateQuery.CURRENT_BYTES);
281 current += currentBytes;

Completed in 599 milliseconds