Lines Matching refs:hasFix
63 bool *hasFix) in qlocationutils_readGga() argument
69 if (hasFix && parts.count() > 6 && parts[6].count() > 0) in qlocationutils_readGga()
70 *hasFix = parts[6].toInt() > 0; in qlocationutils_readGga()
106 bool *hasFix) in qlocationutils_readGsa() argument
110 if (hasFix && parts.count() > 2 && !parts[2].isEmpty()) in qlocationutils_readGsa()
111 *hasFix = parts[2].toInt() > 0; in qlocationutils_readGsa()
147 static void qlocationutils_readGll(const char *data, int size, QGeoPositionInfo *info, bool *hasFix) in qlocationutils_readGll() argument
153 if (hasFix && parts.count() > 6 && parts[6].count() > 0) in qlocationutils_readGll()
154 *hasFix = (parts[6][0] == 'A'); in qlocationutils_readGll()
175 static void qlocationutils_readRmc(const char *data, int size, QGeoPositionInfo *info, bool *hasFix) in qlocationutils_readRmc() argument
183 if (hasFix && parts.count() > 2 && parts[2].count() > 0) in qlocationutils_readRmc()
184 *hasFix = (parts[2][0] == 'A'); in qlocationutils_readRmc()
234 static void qlocationutils_readVtg(const char *data, int size, QGeoPositionInfo *info, bool *hasFix) in qlocationutils_readVtg() argument
236 if (hasFix) in qlocationutils_readVtg()
237 *hasFix = false; in qlocationutils_readVtg()
256 static void qlocationutils_readZda(const char *data, int size, QGeoPositionInfo *info, bool *hasFix) in qlocationutils_readZda() argument
258 if (hasFix) in qlocationutils_readZda()
259 *hasFix = false; in qlocationutils_readZda()
311 double uere, bool *hasFix) in getPosInfoFromNmea() argument
316 if (hasFix) in getPosInfoFromNmea()
317 *hasFix = false; in getPosInfoFromNmea()
333 qlocationutils_readGga(data, size, info, uere, hasFix); in getPosInfoFromNmea()
336 qlocationutils_readGsa(data, size, info, uere, hasFix); in getPosInfoFromNmea()
339 qlocationutils_readGll(data, size, info, hasFix); in getPosInfoFromNmea()
342 qlocationutils_readRmc(data, size, info, hasFix); in getPosInfoFromNmea()
345 qlocationutils_readVtg(data, size, info, hasFix); in getPosInfoFromNmea()
348 qlocationutils_readZda(data, size, info, hasFix); in getPosInfoFromNmea()