Home
last modified time | relevance | path

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

/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/browser/
H A Ddownloadmanager.cpp235 void DownloadItem::downloadProgress(qint64 bytesReceived, qint64 bytesTotal) in downloadProgress() argument
238 if (bytesTotal == -1) { in downloadProgress()
243 progressBar->setMaximum(bytesTotal); in downloadProgress()
253 qint64 bytesTotal = progressBar->maximum(); in updateInfoLabel() local
258 double timeRemaining = ((double)(bytesTotal - m_bytesReceived)) / speed; in updateInfoLabel()
273 if (bytesTotal != 0) in updateInfoLabel()
279 .arg(bytesTotal == 0 ? tr("?") : dataString(bytesTotal)) in updateInfoLabel()
283 if (m_bytesReceived == bytesTotal) in updateInfoLabel()
288 .arg(dataString(bytesTotal)); in updateInfoLabel()
H A Ddownloadmanager.h69 void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);