Home
last modified time | relevance | path

Searched refs:QGeoSatelliteInfoSource (Results 1 – 25 of 57) sorted by relevance

123

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqgeosatelliteinfosource.cpp97 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 &param… in createSource_real()
173 QGeoSatelliteInfoSource *s = nullptr; in createSource_real()
192 QGeoSatelliteInfoSource *QGeoSatelliteInfoSource::createDefaultSource(QObject *parent) in createDefaultSource()
[all …]
H A Dqgeosatelliteinfosource.h50 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 &parameters, QObject *parent…
71 …static QGeoSatelliteInfoSource *createSource(const QString &sourceName, const QVariantMap &paramet…
91 void error(QGeoSatelliteInfoSource::Error);
94 explicit QGeoSatelliteInfoSource(QGeoSatelliteInfoSourcePrivate &dd, QObject *parent);
97 Q_DISABLE_COPY(QGeoSatelliteInfoSource)
H A Dqgeosatelliteinfosource_p.h58 class QGeoSatelliteInfoSource; variable
63 static QGeoSatelliteInfoSourcePrivate *get(QGeoSatelliteInfoSource &source);
H A Dqgeopositioninfosourcefactory.h56 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 Dqgeosatelliteinfosource_android.cpp51 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 Djnipositioning.cpp462QGeoSatelliteInfoSource::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 Dtestqgeosatelliteinfosource.cpp44 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 Dtestqgeosatelliteinfosource_p.h36 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 Dqnmeasatelliteinfosource.cpp111 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 Dqgeopositioninfosourcefactory_serialnmea.h55 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent);
59QGeoSatelliteInfoSource *satelliteInfoSourceWithParameters(QObject *parent, const QVariantMap &par…
H A Dqnmeasatelliteinfosource_p.h67 class /*Q_POSITIONING_PRIVATE_EXPORT*/ QNmeaSatelliteInfoSource : public QGeoSatelliteInfoSource
88 void setError(QGeoSatelliteInfoSource::Error satelliteError);
H A Dqgeopositioninfosourcefactory_serialnmea.cpp242 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 Dtst_positionplugin.cpp71 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 Dsatellitemodel.h61 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 Dsatellitemodel.cpp59 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 Dqgeosatelliteinfosource_geocluemaster.cpp55 : 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 Dqgeopositioninfosourcefactory_geoclue.cpp57 QGeoSatelliteInfoSource *QGeoPositionInfoSourceFactoryGeoclue::satelliteInfoSource(QObject *parent) in satelliteInfoSource()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/position/gypsy/
H A Dqgeosatelliteinfosource_gypsy_p.h71 SatelliteGypsyEngine(QGeoSatelliteInfoSource *parent = 0);
96 QGeoSatelliteInfoSource *m_owner;
99 class QGeoSatelliteInfoSourceGypsy : public QGeoSatelliteInfoSource
H A Dqgeosatelliteinfosource_gypsy.cpp63 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 Dplugin.cpp223 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent);
227QGeoSatelliteInfoSource *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 Dqgeosatelliteinfosource_simulator_p.h63 class QGeoSatelliteInfoSourceSimulator : public QGeoSatelliteInfoSource
76 Error error() const { return QGeoSatelliteInfoSource::NoError; } in error()
H A Dqgeosatelliteinfosource_simulator.cpp47 : QGeoSatelliteInfoSource(parent) in QGeoSatelliteInfoSourceSimulator()
98 QGeoSatelliteInfoSource::setUpdateInterval(msec); in setUpdateInterval()
H A Dqgeopositioninfosourcefactory_simulator.h57 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/tests/auto/positionpluginV1/
H A Dplugin.cpp191 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 Dqgeopositioninfosourcefactory_cl.h54 QGeoSatelliteInfoSource *satelliteInfoSource(QObject *parent);

123