| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativeplaces/ |
| H A D | qdeclarativecategory.cpp | 81 : QObject(parent), m_icon(0), m_plugin(0), m_reply(0), m_complete(false), m_status(Ready) in QDeclarativeCategory() 88 : QObject(parent), m_category(category), m_icon(0), m_plugin(plugin), m_reply(0), in QDeclarativeCategory() 353 m_reply = placeManager->saveCategory(category(), parentId); in save() 354 connect(m_reply, SIGNAL(finished()), this, SLOT(replyFinished())); in save() 369 m_reply = placeManager->removeCategory(m_category.categoryId()); in remove() 370 connect(m_reply, SIGNAL(finished()), this, SLOT(replyFinished())); in remove() 379 if (!m_reply) in replyFinished() 382 if (m_reply->error() == QPlaceReply::NoError) { in replyFinished() 383 switch (m_reply->type()) { in replyFinished() 385 QPlaceIdReply *idReply = qobject_cast<QPlaceIdReply *>(m_reply); in replyFinished() [all …]
|
| H A D | qdeclarativesearchmodelbase.cpp | 55 : QAbstractListModel(parent), m_plugin(0), m_reply(0), m_complete(false), m_status(Null) in QDeclarativeSearchModelBase() 203 if (m_reply) in update() 230 m_reply = sendQuery(placeManager, m_request); in update() 231 if (!m_reply) { in update() 237 m_reply->setParent(this); in update() 238 connect(m_reply, SIGNAL(finished()), this, SLOT(queryFinished())); in update() 239 connect(m_reply, SIGNAL(contentUpdated()), this, SLOT(onContentUpdated())); in update() 247 if (!m_reply) in cancel() 250 if (!m_reply->isFinished()) in cancel() 251 m_reply->abort(); in cancel() [all …]
|
| H A D | qdeclarativeplacecontentmodel.cpp | 53 m_reply(0), m_complete(false) in QDeclarativePlaceContentModel() 133 if (m_reply) { in clearData() 134 m_reply->abort(); in clearData() 135 m_reply->deleteLater(); in clearData() 136 m_reply = 0; in clearData() 249 if (m_reply) in fetchMore() 271 m_reply = placeManager->getPlaceContent(request); in fetchMore() 273 m_reply = placeManager->getPlaceContent(m_nextRequest); in fetchMore() 276 connect(m_reply, SIGNAL(finished()), this, SLOT(fetchFinished()), Qt::QueuedConnection); in fetchMore() 300 if (!m_reply) in fetchFinished() [all …]
|
| H A D | qdeclarativeplace.cpp | 188 m_contactDetails(new QDeclarativeContactDetails(this)), m_reply(0), m_plugin(0), in QDeclarativePlace() 201 m_contactDetails(new QDeclarativeContactDetails(this)), m_reply(0), m_plugin(plugin), in QDeclarativePlace() 665 if (!m_reply) in finished() 668 if (m_reply->error() == QPlaceReply::NoError) { in finished() 669 switch (m_reply->type()) { in finished() 671 QPlaceIdReply *idReply = qobject_cast<QPlaceIdReply *>(m_reply); in finished() 686 QPlaceDetailsReply *detailsReply = qobject_cast<QPlaceDetailsReply *>(m_reply); in finished() 697 m_reply->deleteLater(); in finished() 698 m_reply = 0; in finished() 702 QString errorString = m_reply->errorString(); in finished() [all …]
|
| H A D | qdeclarativesearchsuggestionmodel.cpp | 316 if (!m_reply) in queryFinished() 319 QPlaceReply *reply = m_reply; in queryFinished() 320 m_reply = 0; in queryFinished()
|
| H A D | qdeclarativesearchresultmodel.cpp | 745 if (!m_reply) in queryFinished() 747 QPlaceReply *reply = m_reply; in queryFinished() 748 m_reply = 0; in queryFinished() 812 m_reply = favoritesManager->matchingPlaces(request); in queryFinished() 813 connect(m_reply, SIGNAL(finished()), this, SLOT(queryFinished())); in queryFinished() 814 connect(m_reply, SIGNAL(contentUpdated()), this, SLOT(onContentUpdated())); in queryFinished() 828 if (!m_reply) in onContentUpdated() 831 QPlaceReply *reply = m_reply; // not finished, don't delete. in onContentUpdated()
|
| H A D | qdeclarativeplacecontentmodel_p.h | 129 QPlaceContentReply *m_reply; variable
|
| H A D | qdeclarativesearchmodelbase_p.h | 148 QPlaceReply *m_reply; variable
|
| H A D | qdeclarativecategory_p.h | 143 QPlaceReply *m_reply; variable
|
| H A D | qdeclarativeplace_p.h | 240 QPlaceReply *m_reply; variable
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/nokia_services/routing/ |
| H A D | tst_routing.cpp | 121 MockGeoNetworkReply* m_reply; member in MockGeoNetworkAccessManager 126 , m_reply(0) in MockGeoNetworkAccessManager() 131 MockGeoNetworkReply* r = m_reply; in get() 132 m_reply = 0; in get() 152 delete m_reply; in setReply() 153 m_reply = reply; in setReply() 154 if (m_reply) in setReply() 155 m_reply->setParent(this); in setReply() 197 QGeoRouteReply* m_reply; member in tst_nokia_routing 208 , m_reply(0) in tst_nokia_routing() [all …]
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/browser/ |
| H A D | downloadmanager.cpp | 61 , m_reply(reply) in DownloadItem() 80 if (!m_reply) in init() 84 m_url = m_reply->url(); in init() 85 m_reply->setParent(this); in init() 86 connect(m_reply, SIGNAL(readyRead()), this, SLOT(downloadReadyRead())); in init() 87 connect(m_reply, SIGNAL(error(QNetworkReply::NetworkError)), in init() 89 connect(m_reply, SIGNAL(downloadProgress(qint64,qint64)), in init() 91 connect(m_reply, SIGNAL(metaDataChanged()), in init() 93 connect(m_reply, SIGNAL(finished()), in init() 104 if (m_reply->error() != QNetworkReply::NoError) { in init() [all …]
|
| H A D | downloadmanager.h | 60 QNetworkReply *m_reply; variable
|