| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/ |
| H A D | qgeosatelliteinfosource.cpp | 97 QGeoSatelliteInfoSourcePrivate *QGeoSatelliteInfoSourcePrivate::get(QGeoSatelliteInfoSource &source) in get() 102 QGeoSatelliteInfoSource::QGeoSatelliteInfoSource(QObject *parent) in QGeoSatelliteInfoSource() function in QGeoSatelliteInfoSource 109 QGeoSatelliteInfoSource::QGeoSatelliteInfoSource(QGeoSatelliteInfoSourcePrivate &dd, QObject *paren… in QGeoSatelliteInfoSource() function in QGeoSatelliteInfoSource 119 QGeoSatelliteInfoSource::~QGeoSatelliteInfoSource() in ~QGeoSatelliteInfoSource() 130 QString QGeoSatelliteInfoSource::sourceName() const in sourceName() 158 void QGeoSatelliteInfoSource::setUpdateInterval(int msec) in setUpdateInterval() 163 int QGeoSatelliteInfoSource::updateInterval() const in updateInterval() 168 static QGeoSatelliteInfoSource* createSource_real(const QJsonObject &meta, const QVariantMap ¶m… in createSource_real() 173 QGeoSatelliteInfoSource *s = nullptr; in createSource_real() 192 QGeoSatelliteInfoSource *QGeoSatelliteInfoSource::createDefaultSource(QObject *parent) in createDefaultSource() [all …]
|
| H A D | qgeosatelliteinfosource.h | 50 class Q_POSITIONING_EXPORT QGeoSatelliteInfoSource : public QObject 65 explicit QGeoSatelliteInfoSource(QObject *parent); 66 virtual ~QGeoSatelliteInfoSource(); 68 static QGeoSatelliteInfoSource *createDefaultSource(QObject *parent); 69 static QGeoSatelliteInfoSource *createSource(const QString &sourceName, QObject *parent); 70 …static QGeoSatelliteInfoSource *createDefaultSource(const QVariantMap ¶meters, QObject *parent… 71 …static QGeoSatelliteInfoSource *createSource(const QString &sourceName, const QVariantMap ¶met… 91 void error(QGeoSatelliteInfoSource::Error); 94 explicit QGeoSatelliteInfoSource(QGeoSatelliteInfoSourcePrivate &dd, QObject *parent); 97 Q_DISABLE_COPY(QGeoSatelliteInfoSource)
|
| H A D | qgeosatelliteinfosource_p.h | 58 class QGeoSatelliteInfoSource; variable 63 static QGeoSatelliteInfoSourcePrivate *get(QGeoSatelliteInfoSource &source);
|
| H A D | qgeopositioninfosourcefactory.h | 56 virtual QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent) = 0; 70 …virtual QGeoSatelliteInfoSource *satelliteInfoSourceWithParameters(QObject *parent, const QVariant…
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/android/src/ |
| H A D | qgeosatelliteinfosource_android.cpp | 51 QGeoSatelliteInfoSource(parent), m_error(NoError), updatesRunning(false) in Q_DECLARE_METATYPE() 85 QGeoSatelliteInfoSource::setUpdateInterval(msec); in setUpdateInterval() 96 QGeoSatelliteInfoSource::Error QGeoSatelliteInfoSourceAndroid::error() const in error() 108 QGeoSatelliteInfoSource::Error error = AndroidPositioning::startSatelliteUpdates( in startUpdates() 110 if (error != QGeoSatelliteInfoSource::NoError) { in startUpdates() 113 emit QGeoSatelliteInfoSource::error(m_error); in startUpdates() 147 QGeoSatelliteInfoSource::Error error = AndroidPositioning::startSatelliteUpdates( in requestUpdate() 149 if (error != QGeoSatelliteInfoSource::NoError) { in requestUpdate() 152 emit QGeoSatelliteInfoSource::error(m_error); in requestUpdate() 162 emit QGeoSatelliteInfoSource::satellitesInViewUpdated(satsInView); in processSatelliteUpdateInView() [all …]
|
| H A D | jnipositioning.cpp | 462 …QGeoSatelliteInfoSource::Error startSatelliteUpdates(int androidClassKey, bool isSingleRequest, in… in startSatelliteUpdates() 466 return QGeoSatelliteInfoSource::UnknownSourceError; in startSatelliteUpdates() 472 return QGeoSatelliteInfoSource::AccessError; in startSatelliteUpdates() 485 return static_cast<QGeoSatelliteInfoSource::Error>(errorCode); in startSatelliteUpdates() 491 return QGeoSatelliteInfoSource::UnknownSourceError; in startSatelliteUpdates()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/qgeosatelliteinfosource/ |
| H A D | testqgeosatelliteinfosource.cpp | 44 Q_DECLARE_METATYPE(QGeoSatelliteInfoSource::Error) 53 if (m_testingDefaultSource && QGeoSatelliteInfoSource::createDefaultSource(0) == 0) \ 60 class MySatelliteSource : public QGeoSatelliteInfoSource 65 : QGeoSatelliteInfoSource(parent) { in MySatelliteSource() 73 Error error() const { return QGeoSatelliteInfoSource::NoError; } in error() 81 QGeoSatelliteInfoSource *createTestSource() { in createTestSource() 82 return QGeoSatelliteInfoSource::createDefaultSource(0); in createTestSource() 89 qRegisterMetaType<QGeoSatelliteInfoSource::Error>(); in TestQGeoSatelliteInfoSource() 167 QGeoSatelliteInfoSource *source = QGeoSatelliteInfoSource::createDefaultSource(parent); in createDefaultSource() 170 if (!QGeoSatelliteInfoSource::availableSources().isEmpty()) in createDefaultSource() [all …]
|
| H A D | testqgeosatelliteinfosource_p.h | 36 class QGeoSatelliteInfoSource; variable 50 virtual QGeoSatelliteInfoSource *createTestSource() = 0; 109 QGeoSatelliteInfoSource *m_source;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/serialnmea/ |
| H A D | qnmeasatelliteinfosource.cpp | 111 QGeoSatelliteInfoSource *m_source = nullptr; 112 QGeoSatelliteInfoSource::Error m_satelliteError = QGeoSatelliteInfoSource::NoError; 487 : QGeoSatelliteInfoSource(*new QNmeaSatelliteInfoSourcePrivate(this), parent) in QNmeaSatelliteInfoSource() 517 QGeoSatelliteInfoSource::setUpdateInterval(interval); in setUpdateInterval() 529 QGeoSatelliteInfoSource::Error QNmeaSatelliteInfoSource::error() const in error() 549 void QNmeaSatelliteInfoSource::setError(QGeoSatelliteInfoSource::Error satelliteError) in setError() 552 emit QGeoSatelliteInfoSource::error(satelliteError); in setError()
|
| H A D | qgeopositioninfosourcefactory_serialnmea.h | 55 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent); 59 …QGeoSatelliteInfoSource *satelliteInfoSourceWithParameters(QObject *parent, const QVariantMap &par…
|
| H A D | qnmeasatelliteinfosource_p.h | 67 class /*Q_POSITIONING_PRIVATE_EXPORT*/ QNmeaSatelliteInfoSource : public QGeoSatelliteInfoSource 88 void setError(QGeoSatelliteInfoSource::Error satelliteError);
|
| H A D | qgeopositioninfosourcefactory_serialnmea.cpp | 242 QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactorySerialNmea::satelliteInfoSource(QObject *pare… in satelliteInfoSource() 258 QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactorySerialNmea::satelliteInfoSourceWithParameters… in satelliteInfoSourceWithParameters()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/positionplugintest/ |
| H A D | tst_positionplugin.cpp | 71 QVERIFY(!QGeoSatelliteInfoSource::availableSources().contains("test.source")); in availableSources() 86 QGeoSatelliteInfoSource *ssrc = 0; in create() 87 ssrc = QGeoSatelliteInfoSource::createSource("test.source", 0); in create()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/examples/positioning/satelliteinfo/ |
| H A D | satellitemodel.h | 61 QT_FORWARD_DECLARE_CLASS(QGeoSatelliteInfoSource) in QT_FORWARD_DECLARE_CLASS() argument 113 void error(QGeoSatelliteInfoSource::Error); in QT_FORWARD_DECLARE_CLASS() 118 QGeoSatelliteInfoSource *source; in QT_FORWARD_DECLARE_CLASS()
|
| H A D | satellitemodel.cpp | 59 source = QGeoSatelliteInfoSource::createDefaultSource(this); in SatelliteModel() 70 connect(source, SIGNAL(error(QGeoSatelliteInfoSource::Error)), in SatelliteModel() 71 this, SLOT(error(QGeoSatelliteInfoSource::Error))); in SatelliteModel() 258 void SatelliteModel::error(QGeoSatelliteInfoSource::Error error) in error()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/geoclue/ |
| H A D | qgeosatelliteinfosource_geocluemaster.cpp | 55 : QGeoSatelliteInfoSource(parent), m_master(new QGeoclueMaster(this)), m_provider(0), m_sat(0), in Q_DECLARE_LOGGING_CATEGORY() 80 QGeoSatelliteInfoSource::setUpdateInterval(msec); in setUpdateInterval() 83 QGeoSatelliteInfoSource::Error QGeoSatelliteInfoSourceGeoclueMaster::error() const in error() 254 emit QGeoSatelliteInfoSource::error(m_error); in positionProviderChanged() 296 emit QGeoSatelliteInfoSource::error(m_error); in configureSatelliteSource()
|
| H A D | qgeopositioninfosourcefactory_geoclue.cpp | 57 QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryGeoclue::satelliteInfoSource(QObject *parent) in satelliteInfoSource()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/gypsy/ |
| H A D | qgeosatelliteinfosource_gypsy_p.h | 71 SatelliteGypsyEngine(QGeoSatelliteInfoSource *parent = 0); 96 QGeoSatelliteInfoSource *m_owner; 99 class QGeoSatelliteInfoSourceGypsy : public QGeoSatelliteInfoSource
|
| H A D | qgeosatelliteinfosource_gypsy.cpp | 63 SatelliteGypsyEngine::SatelliteGypsyEngine(QGeoSatelliteInfoSource *parent) : in SatelliteGypsyEngine() 143 …teInfoSourceGypsy::QGeoSatelliteInfoSourceGypsy(QObject *parent) : QGeoSatelliteInfoSource(parent), in QGeoSatelliteInfoSourceGypsy() 289 QGeoSatelliteInfoSource::Error QGeoSatelliteInfoSourceGypsy::error() const in error()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/positionplugin/ |
| H A D | plugin.cpp | 223 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent); 227 …QGeoSatelliteInfoSource *satelliteInfoSourceWithParameters(QObject *parent, const QVariantMap &par… 236 QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryTest::satelliteInfoSource(QObject *parent) in satelliteInfoSource() 251 QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryTest::satelliteInfoSourceWithParameters(QObje… in satelliteInfoSourceWithParameters()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/simulator/ |
| H A D | qgeosatelliteinfosource_simulator_p.h | 63 class QGeoSatelliteInfoSourceSimulator : public QGeoSatelliteInfoSource 76 Error error() const { return QGeoSatelliteInfoSource::NoError; } in error()
|
| H A D | qgeosatelliteinfosource_simulator.cpp | 47 : QGeoSatelliteInfoSource(parent) in QGeoSatelliteInfoSourceSimulator() 98 QGeoSatelliteInfoSource::setUpdateInterval(msec); in setUpdateInterval()
|
| H A D | qgeopositioninfosourcefactory_simulator.h | 57 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/positionpluginV1/ |
| H A D | plugin.cpp | 191 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent); 200 QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryTestV1::satelliteInfoSource(QObject *parent) in satelliteInfoSource()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/corelocation/ |
| H A D | qgeopositioninfosourcefactory_cl.h | 54 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent);
|