Home
last modified time | relevance | path

Searched refs:sampleSpeed (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadThread.java739 final long sampleSpeed = ((currentBytes - mSpeedSampleBytes) * 1000) in updateProgress() local
743 mSpeed = sampleSpeed; in updateProgress()
745 mSpeed = ((mSpeed * 3) + sampleSpeed) / 4; in updateProgress()
/aosp12/packages/apps/DocumentsUI/src/com/android/documentsui/services/
H A DCopyJob.java1018 final long sampleSpeed = in estimateRemainingTime() local
1021 mSpeed = sampleSpeed; in estimateRemainingTime()
1023 mSpeed = ((3 * mSpeed) + sampleSpeed) / 4; in estimateRemainingTime()