Home
last modified time | relevance | path

Searched refs:currentBytes (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
DBluetoothOppShareInfo.java73 long totalBytes, long currentBytes, long timestamp, boolean mediaScanned) { in BluetoothOppShareInfo() argument
85 mCurrentBytes = currentBytes; in BluetoothOppShareInfo()
DBluetoothOppUtility.java307 public static String formatProgressText(long totalBytes, long currentBytes) { in formatProgressText() argument
312 percent = currentBytes / (double) totalBytes; in formatProgressText()
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadThread.java747 final long currentBytes = mInfoDelta.mCurrentBytes; in updateProgress() local
751 final long sampleSpeed = ((currentBytes - mSpeedSampleBytes) * 1000) in updateProgress()
766 mSpeedSampleBytes = currentBytes; in updateProgress()
769 final long bytesDelta = currentBytes - mLastUpdateBytes; in updateProgress()
778 mLastUpdateBytes = currentBytes; in updateProgress()
DDownloadNotifier.java297 final long currentBytes = cursor.getLong(UpdateQuery.CURRENT_BYTES); in updateWithLocked() local
301 current += currentBytes; in updateWithLocked()