Home
last modified time | relevance | path

Searched refs:m_nmeaSocket (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioningquick/
H A Dqdeclarativepositionsource.cpp134 m_nmeaSocket(0), m_active(false), m_singleUpdate(false), m_updateInterval(0), in QDeclarativePositionSource()
142 delete m_nmeaSocket; in ~QDeclarativePositionSource()
274 if (m_nmeaSocket in setNmeaSource()
275 && nmeaSource.host() == m_nmeaSocket->peerName() in setNmeaSource()
276 && nmeaSource.port() == m_nmeaSocket->peerPort()) { in setNmeaSource()
280 delete m_nmeaSocket; in setNmeaSource()
281 m_nmeaSocket = new QTcpSocket(); in setNmeaSource()
283 connect(m_nmeaSocket, &QAbstractSocket::errorOccurred, in setNmeaSource()
285 connect(m_nmeaSocket, &QTcpSocket::connected, in setNmeaSource()
288 m_nmeaSocket->connectToHost(nmeaSource.host(), nmeaSource.port(), QTcpSocket::ReadOnly); in setNmeaSource()
[all …]
H A Dqdeclarativepositionsource_p.h177 QTcpSocket *m_nmeaSocket; variable