Home
last modified time | relevance | path

Searched refs:reply (Results 1 – 25 of 619) sorted by relevance

12345678910>>...25

/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacereply/
H A Dtst_qplacereply.cpp67 TestReply *reply = new TestReply(this); in constructorTest() local
68 QCOMPARE(reply->parent(), this); in constructorTest()
69 delete reply; in constructorTest()
74 TestReply *reply = new TestReply(this); in typeTest() local
75 QCOMPARE(reply->type(), QPlaceReply::Reply); in typeTest()
77 delete reply; in typeTest()
82 TestReply *reply = new TestReply(this); in finishedTest() local
83 QCOMPARE(reply->isFinished(), false); in finishedTest()
84 reply->setFinished(true); in finishedTest()
85 QCOMPARE(reply->isFinished(), true); in finishedTest()
[all …]
/OK3568_Linux_fs/u-boot/net/
H A Dnfs.c439 if (ntohl(rpc_pkt.u.reply.id) > rpc_id) in rpc_lookup_reply()
441 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id) in rpc_lookup_reply()
444 if (rpc_pkt.u.reply.rstatus || in rpc_lookup_reply()
445 rpc_pkt.u.reply.verifier || in rpc_lookup_reply()
446 rpc_pkt.u.reply.astatus) in rpc_lookup_reply()
451 nfs_server_mount_port = ntohl(rpc_pkt.u.reply.data[0]); in rpc_lookup_reply()
454 nfs_server_port = ntohl(rpc_pkt.u.reply.data[0]); in rpc_lookup_reply()
469 if (ntohl(rpc_pkt.u.reply.id) > rpc_id) in nfs_mount_reply()
471 else if (ntohl(rpc_pkt.u.reply.id) < rpc_id) in nfs_mount_reply()
474 if (rpc_pkt.u.reply.rstatus || in nfs_mount_reply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeocodereply/
H A Dtst_qgeocodereply.cpp36 reply = new SubGeocodeReply(); in initTestCase()
42 delete reply; in cleanupTestCase()
49 signalerror = new QSignalSpy(reply, SIGNAL(error(QGeoCodeReply::Error,QString))); in init()
50 signalfinished = new QSignalSpy(reply, SIGNAL(finished())); in init()
61 QVERIFY(!reply->isFinished()); in constructor()
63 QCOMPARE(reply->limit(),-1); in constructor()
64 QCOMPARE(reply->offset(),0); in constructor()
65 QCOMPARE(reply->error(),QGeoCodeReply::NoError); in constructor()
130 reply->callSetFinished(true); in abort()
131 reply->abort(); in abort()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacemanager_unsupported/
H A Dtst_qplacemanager_unsupported.cpp69 void checkSignals(QPlaceReply *reply, QPlaceReply::Error expectedError, bool *failed);
70 bool checkSignals(QPlaceReply *reply, QPlaceReply::Error expectedError);
139 QPlaceDetailsReply *reply = m_manager->getPlaceDetails(QString()); in testGetPlaceDetails() local
140 if (!checkSignals(reply, QPlaceReply::UnsupportedError)) in testGetPlaceDetails()
146 QPlaceContentReply *reply = m_manager->getPlaceContent(QPlaceContentRequest()); in testGetPlaceContent() local
147 if (!checkSignals(reply, QPlaceReply::UnsupportedError)) in testGetPlaceContent()
153 QPlaceSearchReply *reply = m_manager->search(QPlaceSearchRequest()); in testSearch() local
154 if (!checkSignals(reply, QPlaceReply::UnsupportedError)) in testSearch()
160 QPlaceSearchSuggestionReply *reply = m_manager->searchSuggestions(QPlaceSearchRequest()); in testSearchSuggestions() local
161 if (!checkSignals(reply, QPlaceReply::UnsupportedError)) in testSearchSuggestions()
[all …]
/OK3568_Linux_fs/kernel/sound/soc/sof/
H A Dprobe.c32 struct sof_ipc_reply reply; in sof_ipc_probe_init() local
46 &reply, sizeof(reply)); in sof_ipc_probe_init()
63 struct sof_ipc_reply reply; in sof_ipc_probe_deinit() local
69 &reply, sizeof(reply)); in sof_ipc_probe_deinit()
77 struct sof_ipc_probe_info_params *reply; in sof_ipc_probe_info() local
84 reply = kzalloc(SOF_IPC_MSG_MAX_SIZE, GFP_KERNEL); in sof_ipc_probe_info()
85 if (!reply) in sof_ipc_probe_info()
91 msg.rhdr.hdr.size, reply, SOF_IPC_MSG_MAX_SIZE); in sof_ipc_probe_info()
92 if (ret < 0 || reply->rhdr.error < 0) in sof_ipc_probe_info()
95 if (!reply->num_elems) in sof_ipc_probe_info()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/nokia/
H A Dqplacemanagerengine_nokiav2.cpp253 QPlaceDetailsReplyImpl *reply = new QPlaceDetailsReplyImpl(networkReply, this); in getPlaceDetails() local
254 reply->setPlaceId(placeId); in getPlaceDetails()
255 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in getPlaceDetails()
256 connect(reply, SIGNAL(error(QPlaceReply::Error,QString)), in getPlaceDetails()
259 return reply; in getPlaceDetails()
322 QPlaceContentReply *reply = new QPlaceContentReplyImpl(request, networkReply, this); in getPlaceContent() local
323 connect(reply, SIGNAL(finished()), this, SLOT(replyFinished())); in getPlaceContent()
324 connect(reply, SIGNAL(error(QPlaceReply::Error,QString)), in getPlaceContent()
328 QMetaObject::invokeMethod(reply, "setError", Qt::QueuedConnection, in getPlaceContent()
333 return reply; in getPlaceContent()
[all …]
H A Dqgeomapreply_nokia.cpp44 QGeoMapReplyNokia::QGeoMapReplyNokia(QNetworkReply *reply, const QGeoTileSpec &spec, QObject *paren… in QGeoMapReplyNokia() argument
47 if (!reply) { in QGeoMapReplyNokia()
51 connect(reply, in QGeoMapReplyNokia()
56 connect(reply, in QGeoMapReplyNokia()
60 connect(this, &QGeoTiledMapReply::aborted, reply, &QNetworkReply::abort); in QGeoMapReplyNokia()
61 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in QGeoMapReplyNokia()
70 QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); in networkFinished() local
71 reply->deleteLater(); in networkFinished()
73 if (reply->error() != QNetworkReply::NoError) in networkFinished()
76 setMapImageData(reply->readAll()); in networkFinished()
[all …]
H A Dqgeoroutereply_nokia.cpp57 foreach (QNetworkReply *reply, replies) { in Q_DECLARE_METATYPE()
58 if (!reply) { in Q_DECLARE_METATYPE()
62 connect(reply, SIGNAL(finished()), this, SLOT(networkFinished())); in Q_DECLARE_METATYPE()
63 connect(reply, SIGNAL(errorOccurred(QNetworkReply::NetworkError)), in Q_DECLARE_METATYPE()
65 connect(this, &QGeoRouteReply::aborted, reply, &QNetworkReply::abort); in Q_DECLARE_METATYPE()
66 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in Q_DECLARE_METATYPE()
80 QNetworkReply *reply = qobject_cast<QNetworkReply *>(sender()); in networkFinished() local
81 reply->deleteLater(); in networkFinished()
83 if (reply->error() != QNetworkReply::NoError in networkFinished()
84 && reply->error() != QNetworkReply::UnknownContentError) { in networkFinished()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/maps/
H A Dqgeotilefetcher.cpp96 QGeoTiledMapReply *reply = d->invmap_.value(*tile, 0); in cancelTileRequests() local
97 if (reply) { in cancelTileRequests()
99 reply->abort(); in cancelTileRequests()
100 if (reply->isFinished()) in cancelTileRequests()
101 reply->deleteLater(); in cancelTileRequests()
130 QGeoTiledMapReply *reply = getTileImage(ts); in requestNextTile() local
131 if (!reply) in requestNextTile()
134 if (reply->isFinished()) { in requestNextTile()
135 handleReply(reply, ts); in requestNextTile()
137 connect(reply, in requestNextTile()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacesearchreply/
H A Dtst_qplacesearchreply.cpp76 TestSearchReply *reply = new TestSearchReply(this); in constructorTest() local
77 QVERIFY(reply->parent() == this); in constructorTest()
78 delete reply; in constructorTest()
83 TestSearchReply *reply = new TestSearchReply(this); in typeTest() local
84 QVERIFY(reply->type() == QPlaceReply::SearchReply); in typeTest()
85 delete reply; in typeTest()
90 TestSearchReply *reply = new TestSearchReply(this); in requestTest() local
100 reply->setRequest(request); in requestTest()
101 QCOMPARE(reply->request(), request); in requestTest()
102 reply->setRequest(QPlaceSearchRequest()); in requestTest()
[all …]
/OK3568_Linux_fs/external/xserver/Xext/
H A Dxf86bigfont.c269 xXF86BigfontQueryVersionReply reply; in ProcXF86BigfontQueryVersion() local
272 reply = (xXF86BigfontQueryVersionReply) { in ProcXF86BigfontQueryVersion()
290 swaps(&reply.sequenceNumber); in ProcXF86BigfontQueryVersion()
291 swapl(&reply.length); in ProcXF86BigfontQueryVersion()
292 swaps(&reply.majorVersion); in ProcXF86BigfontQueryVersion()
293 swaps(&reply.minorVersion); in ProcXF86BigfontQueryVersion()
294 swapl(&reply.uid); in ProcXF86BigfontQueryVersion()
295 swapl(&reply.gid); in ProcXF86BigfontQueryVersion()
296 swapl(&reply.signature); in ProcXF86BigfontQueryVersion()
298 WriteToClient(client, sizeof(xXF86BigfontQueryVersionReply), &reply); in ProcXF86BigfontQueryVersion()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/mapbox/
H A Dqgeomapreplymapbox.cpp41 QGeoMapReplyMapbox::QGeoMapReplyMapbox(QNetworkReply *reply, const QGeoTileSpec &spec, const QStrin… in QGeoMapReplyMapbox() argument
44 if (!reply) { in QGeoMapReplyMapbox()
48 connect(reply, SIGNAL(finished()), this, SLOT(networkReplyFinished())); in QGeoMapReplyMapbox()
49 connect(reply, SIGNAL(errorOccurred(QNetworkReply::NetworkError)), in QGeoMapReplyMapbox()
51 connect(this, &QGeoTiledMapReply::aborted, reply, &QNetworkReply::abort); in QGeoMapReplyMapbox()
52 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in QGeoMapReplyMapbox()
61 QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); in networkReplyFinished() local
62 reply->deleteLater(); in networkReplyFinished()
64 if (reply->error() != QNetworkReply::NoError) in networkReplyFinished()
67 setMapImageData(reply->readAll()); in networkReplyFinished()
[all …]
H A Dqgeocodereplymapbox.cpp53 QGeoCodeReplyMapbox::QGeoCodeReplyMapbox(QNetworkReply *reply, QObject *parent) in QGeoCodeReplyMapbox() argument
57 if (!reply) { in QGeoCodeReplyMapbox()
62 connect(reply, &QNetworkReply::finished, this, &QGeoCodeReplyMapbox::onNetworkReplyFinished); in QGeoCodeReplyMapbox()
63 connect(reply, &QNetworkReply::errorOccurred, this, &QGeoCodeReplyMapbox::onNetworkReplyError); in QGeoCodeReplyMapbox()
65 connect(this, &QGeoCodeReply::aborted, reply, &QNetworkReply::abort); in QGeoCodeReplyMapbox()
66 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in QGeoCodeReplyMapbox()
75 QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); in onNetworkReplyFinished() local
76 reply->deleteLater(); in onNetworkReplyFinished()
78 if (reply->error() != QNetworkReply::NoError) in onNetworkReplyFinished()
82 QJsonDocument document = QJsonDocument::fromJson(reply->readAll()); in onNetworkReplyFinished()
[all …]
H A Dqplacemanagerenginemapbox.cpp143 QPlaceReply *reply; in doSearch() local
145 reply = new QPlaceSearchReplyMapbox(request, 0, this); in doSearch()
147 reply = new QPlaceSearchSuggestionReplyMapbox(0, this); in doSearch()
149 connect(reply, &QPlaceReply::finished, this, &QPlaceManagerEngineMapbox::onReplyFinished); in doSearch()
150 connect(reply, QOverload<QPlaceReply::Error, const QString &>::of(&QPlaceReply::error), in doSearch()
153 QMetaObject::invokeMethod(reply, "setError", Qt::QueuedConnection, in doSearch()
157 return reply; in doSearch()
229 QPlaceReply *reply; in doSearch() local
231 reply = new QPlaceSearchReplyMapbox(request, networkReply, this); in doSearch()
233 reply = new QPlaceSearchSuggestionReplyMapbox(networkReply, this); in doSearch()
[all …]
H A Dqplacesearchsuggestionreplymapbox.cpp54 QPlaceSearchSuggestionReplyMapbox::QPlaceSearchSuggestionReplyMapbox(QNetworkReply *reply, QPlaceMa… in QPlaceSearchSuggestionReplyMapbox() argument
58 if (!reply) { in QPlaceSearchSuggestionReplyMapbox()
63 …connect(reply, &QNetworkReply::finished, this, &QPlaceSearchSuggestionReplyMapbox::onReplyFinished… in QPlaceSearchSuggestionReplyMapbox()
64 …connect(reply, &QNetworkReply::errorOccurred, this, &QPlaceSearchSuggestionReplyMapbox::onNetworkE… in QPlaceSearchSuggestionReplyMapbox()
66 connect(this, &QPlaceReply::aborted, reply, &QNetworkReply::abort); in QPlaceSearchSuggestionReplyMapbox()
67 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in QPlaceSearchSuggestionReplyMapbox()
85 QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); in onReplyFinished() local
86 reply->deleteLater(); in onReplyFinished()
88 if (reply->error() != QNetworkReply::NoError) in onReplyFinished()
91 QJsonDocument document = QJsonDocument::fromJson(reply->readAll()); in onReplyFinished()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/
H A Dqgeomapreplyosm.cpp44 QGeoMapReplyOsm::QGeoMapReplyOsm(QNetworkReply *reply, in QGeoMapReplyOsm() argument
50 if (!reply) { in QGeoMapReplyOsm()
54 connect(reply, SIGNAL(finished()), this, SLOT(networkReplyFinished())); in QGeoMapReplyOsm()
55 connect(reply, SIGNAL(errorOccurred(QNetworkReply::NetworkError)), in QGeoMapReplyOsm()
57 connect(this, &QGeoTiledMapReply::aborted, reply, &QNetworkReply::abort); in QGeoMapReplyOsm()
58 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in QGeoMapReplyOsm()
68 QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); in networkReplyFinished() local
69 reply->deleteLater(); in networkReplyFinished()
71 if (reply->error() != QNetworkReply::NoError) // Already handled in networkReplyError in networkReplyFinished()
74 QByteArray a = reply->readAll(); in networkReplyFinished()
[all …]
H A Dqgeoroutereplyosm.cpp45 QGeoRouteReplyOsm::QGeoRouteReplyOsm(QNetworkReply *reply, const QGeoRouteRequest &request, in QGeoRouteReplyOsm() argument
49 if (!reply) { in QGeoRouteReplyOsm()
53 connect(reply, SIGNAL(finished()), this, SLOT(networkReplyFinished())); in QGeoRouteReplyOsm()
54 connect(reply, SIGNAL(errorOccurred(QNetworkReply::NetworkError)), in QGeoRouteReplyOsm()
56 connect(this, &QGeoRouteReply::aborted, reply, &QNetworkReply::abort); in QGeoRouteReplyOsm()
57 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in QGeoRouteReplyOsm()
66 QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); in networkReplyFinished() local
67 reply->deleteLater(); in networkReplyFinished()
69 if (reply->error() != QNetworkReply::NoError) in networkReplyFinished()
77 QGeoRouteReply::Error error = parser->parseReply(routes, errorString, reply->readAll()); in networkReplyFinished()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/esri/
H A Dgeoroutereply_esri.cpp49 GeoRouteReplyEsri::GeoRouteReplyEsri(QNetworkReply *reply, const QGeoRouteRequest &request, in GeoRouteReplyEsri() argument
53 if (!reply) { in GeoRouteReplyEsri()
57 connect(reply, SIGNAL(finished()), this, SLOT(networkReplyFinished())); in GeoRouteReplyEsri()
58 connect(reply, SIGNAL(errorOccurred(QNetworkReply::NetworkError)), in GeoRouteReplyEsri()
60 connect(this, &QGeoRouteReply::aborted, reply, &QNetworkReply::abort); in GeoRouteReplyEsri()
61 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in GeoRouteReplyEsri()
70 QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); in networkReplyFinished() local
71 reply->deleteLater(); in networkReplyFinished()
73 if (reply->error() != QNetworkReply::NoError) in networkReplyFinished()
76 QJsonDocument document = QJsonDocument::fromJson(reply->readAll()); in networkReplyFinished()
[all …]
H A Dgeotiledmapreply_esri.cpp50 GeoTiledMapReplyEsri::GeoTiledMapReplyEsri(QNetworkReply *reply, const QGeoTileSpec &spec, in GeoTiledMapReplyEsri() argument
54 if (!reply) { in GeoTiledMapReplyEsri()
58 connect(reply, SIGNAL(finished()), this, SLOT(networkReplyFinished())); in GeoTiledMapReplyEsri()
59 connect(reply, SIGNAL(errorOccurred(QNetworkReply::NetworkError)), in GeoTiledMapReplyEsri()
61 connect(this, &QGeoTiledMapReply::aborted, reply, &QNetworkReply::abort); in GeoTiledMapReplyEsri()
62 connect(this, &QObject::destroyed, reply, &QObject::deleteLater); in GeoTiledMapReplyEsri()
71 QNetworkReply *reply = static_cast<QNetworkReply *>(sender()); in networkReplyFinished() local
72 reply->deleteLater(); in networkReplyFinished()
74 if (reply->error() != QNetworkReply::NoError) in networkReplyFinished()
77 QByteArray const& imageData = reply->readAll(); in networkReplyFinished()
[all …]
/OK3568_Linux_fs/kernel/net/openvswitch/
H A Dmeter.c235 static int ovs_meter_cmd_reply_stats(struct sk_buff *reply, u32 meter_id, in ovs_meter_cmd_reply_stats() argument
242 if (nla_put_u32(reply, OVS_METER_ATTR_ID, meter_id)) in ovs_meter_cmd_reply_stats()
245 if (nla_put(reply, OVS_METER_ATTR_STATS, in ovs_meter_cmd_reply_stats()
249 if (nla_put_u64_64bit(reply, OVS_METER_ATTR_USED, meter->used, in ovs_meter_cmd_reply_stats()
253 nla = nla_nest_start_noflag(reply, OVS_METER_ATTR_BANDS); in ovs_meter_cmd_reply_stats()
262 band_nla = nla_nest_start_noflag(reply, OVS_BAND_ATTR_UNSPEC); in ovs_meter_cmd_reply_stats()
263 if (!band_nla || nla_put(reply, OVS_BAND_ATTR_STATS, in ovs_meter_cmd_reply_stats()
267 nla_nest_end(reply, band_nla); in ovs_meter_cmd_reply_stats()
269 nla_nest_end(reply, nla); in ovs_meter_cmd_reply_stats()
281 struct sk_buff *reply; in ovs_meter_cmd_features() local
[all …]
/OK3568_Linux_fs/external/xserver/hw/dmx/glxProxy/
H A Dglxcmdsswap.c274 xGLXGetVisualConfigsReply reply; in __glXSwapGetVisualConfigs() local
293 reply = (xGLXGetVisualConfigsReply) { in __glXSwapGetVisualConfigs()
302 __GLX_SWAP_SHORT(&reply.sequenceNumber); in __glXSwapGetVisualConfigs()
303 __GLX_SWAP_INT(&reply.length); in __glXSwapGetVisualConfigs()
304 __GLX_SWAP_INT(&reply.numVisuals); in __glXSwapGetVisualConfigs()
305 __GLX_SWAP_INT(&reply.numProps); in __glXSwapGetVisualConfigs()
306 WriteToClient(client, sz_xGLXGetVisualConfigsReply, &reply); in __glXSwapGetVisualConfigs()
499 __glXSwapMakeCurrentReply(ClientPtr client, xGLXMakeCurrentReadSGIReply * reply) in __glXSwapMakeCurrentReply() argument
502 __GLX_SWAP_SHORT(&reply->sequenceNumber); in __glXSwapMakeCurrentReply()
503 __GLX_SWAP_INT(&reply->length); in __glXSwapMakeCurrentReply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qplacematchreply/
H A Dtst_qplacematchreply.cpp72 QPlaceMatchReply *reply = new TestMatchReply(this); in constructorTest() local
73 QVERIFY(reply->parent() == this); in constructorTest()
74 delete reply; in constructorTest()
79 TestMatchReply *reply = new TestMatchReply(this); in typeTest() local
80 QVERIFY(reply->type() == QPlaceReply::MatchReply); in typeTest()
81 delete reply; in typeTest()
86 TestMatchReply *reply = new TestMatchReply(this); in requestTest() local
100 reply->setRequest(request); in requestTest()
101 QCOMPARE(reply->request(), request); in requestTest()
103 reply->setRequest(QPlaceMatchRequest()); in requestTest()
[all …]
/OK3568_Linux_fs/kernel/drivers/gpu/drm/vmwgfx/
H A Dvmwgfx_msg.c204 static unsigned long vmw_port_hb_in(struct rpc_channel *channel, char *reply, in vmw_port_hb_in() argument
214 di = (uintptr_t) reply; in vmw_port_hb_in()
243 memcpy(reply, &ebx, bytes); in vmw_port_hb_in()
245 reply += bytes; in vmw_port_hb_in()
316 char *reply; in vmw_recv_msg() local
347 reply = kzalloc(reply_len + 1, GFP_KERNEL); in vmw_recv_msg()
348 if (!reply) { in vmw_recv_msg()
355 ebx = vmw_port_hb_in(channel, reply, reply_len, in vmw_recv_msg()
358 kfree(reply); in vmw_recv_msg()
359 reply = NULL; in vmw_recv_msg()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/placemanager_utils/
H A Dplacemanager_utils.cpp133 QPlaceSearchSuggestionReply *reply = manager->searchSuggestions(request); in doSearchSuggestions() local
134 bool success = checkSignals(reply, expectedError, manager); in doSearchSuggestions()
135 *results = reply->suggestions(); in doSearchSuggestions()
138 qDebug() << "Error string = " << reply->errorString(); in doSearchSuggestions()
175 QPlaceReply *reply = manager->initializeCategories(); in doInitializeCategories() local
176 bool success = checkSignals(reply, expectedError, manager); in doInitializeCategories()
179 qDebug() << "Error string = " << reply->errorString(); in doInitializeCategories()
181 delete reply; in doInitializeCategories()
239 QPlaceContentReply *reply = manager->getPlaceContent(request); in doFetchContent() local
240 bool isSuccessful = checkSignals(reply, expectedError, manager); in doFetchContent()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeoroutereply/
H A Dtst_qgeoroutereply.cpp44 reply = new SubRouteReply(*qgeorouterequest); in initTestCase()
53 delete reply; in cleanupTestCase()
59 signalerror = new QSignalSpy(reply, SIGNAL(error(QGeoRouteReply::Error,QString))); in init()
60 signalfinished = new QSignalSpy(reply, SIGNAL(finished())); in init()
71 QVERIFY(!reply->isFinished()); in constructor()
72 QCOMPARE(reply->error(), QGeoRouteReply::NoError); in constructor()
73 QCOMPARE(reply->request(), *qgeorouterequest); in constructor()
145 reply->callSetRoutes(routes); in routes()
148 routescopy = reply->routes(); in routes()
166 reply->callSetFinished(true); in finished()
[all …]

12345678910>>...25