Home
last modified time | relevance | path

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

/bootable/recovery/updater_sample/src/com/example/android/systemupdatersample/util/
DFileDownloader.java74 long total = 0; in download() local
75 while (total < mSize) { in download()
76 int needToRead = (int) Math.min(4096, mSize - total); in download()
82 total += count; in download()
84 if (total != mSize) { in download()