Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/plugins/geoservices/osm/
H A Dqgeofiletilecacheosm.cpp123 m_maxMapIdTimestamps.resize(max+1); // initializes to invalid QDateTime in init()
136 if (fi.lastModified() > m_maxMapIdTimestamps[spec.mapId()]) in init()
137 m_maxMapIdTimestamps[spec.mapId()] = fi.lastModified(); in init()
301 … if (m_maxMapIdTimestamps[p->mapType().mapId()].isValid() && // there are tiles in the cache in clearObsoleteTiles()
302 …p->timestamp() > m_maxMapIdTimestamps[p->mapType().mapId()]) { // and they are older than the prov… in clearObsoleteTiles()
304 … << " -- data last modified: " << m_maxMapIdTimestamps[p->mapType().mapId()] << ". Clearing."; in clearObsoleteTiles()
306 m_maxMapIdTimestamps[p->mapType().mapId()] = p->timestamp(); // don't do it again. in clearObsoleteTiles()
H A Dqgeofiletilecacheosm.h82 QVector<QDateTime> m_maxMapIdTimestamps; variable