Home
last modified time | relevance | path

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

/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DDownloadNotifier.java87 private final LongSparseLongArray mDownloadSpeed = new LongSparseLongArray(); field in DownloadNotifier
137 synchronized (mDownloadSpeed) { in notifyDownloadSpeed()
139 mDownloadSpeed.put(id, bytesPerSecond); in notifyDownloadSpeed()
142 mDownloadSpeed.delete(id); in notifyDownloadSpeed()
310 synchronized (mDownloadSpeed) { in updateWithLocked()
321 speed += mDownloadSpeed.get(id); in updateWithLocked()
442 synchronized (mDownloadSpeed) { in dumpSpeeds()
443 for (int i = 0; i < mDownloadSpeed.size(); i++) { in dumpSpeeds()
444 final long id = mDownloadSpeed.keyAt(i); in dumpSpeeds()
446 Log.d(TAG, "Download " + id + " speed " + mDownloadSpeed.valueAt(i) + "bps, " in dumpSpeeds()