Home
last modified time | relevance | path

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

/aosp12/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DDownloadNotifier.java86 private final LongSparseLongArray mDownloadSpeed = new LongSparseLongArray(); field in DownloadNotifier
128 synchronized (mDownloadSpeed) { in notifyDownloadSpeed()
130 mDownloadSpeed.put(id, bytesPerSecond); in notifyDownloadSpeed()
133 mDownloadSpeed.delete(id); in notifyDownloadSpeed()
296 synchronized (mDownloadSpeed) { in updateWithLocked()
307 speed += mDownloadSpeed.get(id); in updateWithLocked()
421 synchronized (mDownloadSpeed) { in dumpSpeeds()
422 for (int i = 0; i < mDownloadSpeed.size(); i++) { in dumpSpeeds()
423 final long id = mDownloadSpeed.keyAt(i); in dumpSpeeds()
425 Log.d(TAG, "Download " + id + " speed " + mDownloadSpeed.valueAt(i) + "bps, " in dumpSpeeds()