Home
last modified time | relevance | path

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

/haiku/src/bin/pkgman/
H A DPackageManager.cpp177 fLastBytes = 0; in ProgressPackageDownloadStarted()
195 fLastBytes = totalBytes; in ProgressPackageDownloadActive()
200 if (bytes <= fLastBytes || (system_time() - fLastRateCalcTime) < 500000) in ProgressPackageDownloadActive()
205 fDownloadRate = (bytes - fLastBytes) * 1000000 in ProgressPackageDownloadActive()
209 fLastBytes = bytes; in ProgressPackageDownloadActive()
280 string_for_size(fLastBytes, byteBuffer, sizeof(byteBuffer))); in ProgressPackageDownloadComplete()
H A DPackageManager.h79 off_t fLastBytes; variable