Home
last modified time | relevance | path

Searched refs:detailsReply (Results 1 – 3 of 3) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/doc/snippets/places/
H A Drequesthandler.h122 /*QPlaceDetailsReply * */ detailsReply = manager->getPlaceDetails(place.placeId()); in details()
123 connect(detailsReply, SIGNAL(finished()), this, SLOT(handleDetailsReply())); in details()
350 if (detailsReply->error() == QPlaceReply::NoError) in handleDetailsReply()
351 place = detailsReply->place(); in handleDetailsReply()
353 detailsReply->deleteLater(); //discard reply in handleDetailsReply()
354 detailsReply = 0; in handleDetailsReply()
524 QPlaceDetailsReply *detailsReply; variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/placemanager_utils/
H A Dplacemanager_utils.cpp162 QPlaceDetailsReply *detailsReply = manager->getPlaceDetails(placeId); in doFetchDetails() local
163 bool success = checkSignals(detailsReply, expectedError, manager); in doFetchDetails()
164 *place = detailsReply->place(); in doFetchDetails()
167 qDebug() << "Error string = " << detailsReply->errorString(); in doFetchDetails()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/location/declarativeplaces/
H A Dqdeclarativeplace.cpp686 QPlaceDetailsReply *detailsReply = qobject_cast<QPlaceDetailsReply *>(m_reply); in finished() local
687 setPlace(detailsReply->place()); in finished()