Home
last modified time | relevance | path

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

/dports/x11-toolkits/qt5-declarative/kde-qtdeclarative-5.15.2p41/src/qml/qml/
H A Dqqmltypeloadernetworkreplyproxy.cpp63 l->networkReplyProgress(reply, bytesReceived, bytesTotal); in downloadProgress()
70 l->networkReplyProgress(reply, replySize, replySize); in manualFinished()
H A Dqqmltypeloader_p.h201 void networkReplyProgress(QNetworkReply *, qint64, qint64);
H A Dqqmltypeloader.cpp371 void QQmlTypeLoader::networkReplyProgress(QNetworkReply *reply, in networkReplyProgress() function in QQmlTypeLoader
/dports/x11-toolkits/qt5-declarative-test/kde-qtdeclarative-5.15.2p41/src/qml/qml/
H A Dqqmltypeloadernetworkreplyproxy.cpp63 l->networkReplyProgress(reply, bytesReceived, bytesTotal); in downloadProgress()
70 l->networkReplyProgress(reply, replySize, replySize); in manualFinished()
H A Dqqmltypeloader_p.h201 void networkReplyProgress(QNetworkReply *, qint64, qint64);
H A Dqqmltypeloader.cpp371 void QQmlTypeLoader::networkReplyProgress(QNetworkReply *reply, in networkReplyProgress() function in QQmlTypeLoader
/dports/audio/kid3-qt5/kid3-3.8.6/src/core/import/
H A Dhttpclient.cpp124 this, &HttpClient::networkReplyProgress); in networkReplyFinished()
150 void HttpClient::networkReplyProgress(qint64 received, qint64 total) in networkReplyProgress() function in HttpClient
219 this, &HttpClient::networkReplyProgress); in sendRequest()
H A Dhttpclient.h135 void networkReplyProgress(qint64 received, qint64 total);
/dports/audio/kid3-kf5/kid3-3.8.6/src/core/import/
H A Dhttpclient.cpp124 this, &HttpClient::networkReplyProgress); in networkReplyFinished()
150 void HttpClient::networkReplyProgress(qint64 received, qint64 total) in networkReplyProgress() function in HttpClient
219 this, &HttpClient::networkReplyProgress); in sendRequest()
H A Dhttpclient.h135 void networkReplyProgress(qint64 received, qint64 total);
/dports/converters/wkhtmltopdf/qt-5db36ec/src/declarative/qml/
H A Dqdeclarativetypeloader_p.h171 void networkReplyProgress(qint64,qint64);
176 void networkReplyProgress(QNetworkReply *, qint64, qint64);
H A Dqdeclarativetypeloader.cpp562 networkReplyProgress(reply, size, size); in load()
566 this, SLOT(networkReplyProgress(qint64,qint64))); in load()
614 void QDeclarativeDataLoader::networkReplyProgress(QNetworkReply *reply, qint64 bytesReceived, qint6… in networkReplyProgress() function in QDeclarativeDataLoader
626 void QDeclarativeDataLoader::networkReplyProgress(qint64 bytesReceived, qint64 bytesTotal) in networkReplyProgress() function in QDeclarativeDataLoader
629 networkReplyProgress(reply, bytesReceived, bytesTotal); in networkReplyProgress()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtbase/examples/network/http/
H A Dhttpwindow.h80 void networkReplyProgress(qint64 bytesRead, qint64 totalBytes);
H A Dhttpwindow.cpp82 void ProgressDialog::networkReplyProgress(qint64 bytesRead, qint64 totalBytes) in networkReplyProgress() function in ProgressDialog
161 …ct(reply, &QNetworkReply::downloadProgress, progressDialog, &ProgressDialog::networkReplyProgress); in startRequest()