Lines Matching refs:locGpsLocation
117 GnssAdapter::convertLocation(Location& out, const LocGpsLocation& locGpsLocation, in convertLocation() argument
123 if (LOC_GPS_LOCATION_HAS_LAT_LONG & locGpsLocation.flags) { in convertLocation()
125 out.latitude = locGpsLocation.latitude; in convertLocation()
126 out.longitude = locGpsLocation.longitude; in convertLocation()
128 if (LOC_GPS_LOCATION_HAS_ALTITUDE & locGpsLocation.flags) { in convertLocation()
130 out.altitude = locGpsLocation.altitude; in convertLocation()
132 if (LOC_GPS_LOCATION_HAS_SPEED & locGpsLocation.flags) { in convertLocation()
134 out.speed = locGpsLocation.speed; in convertLocation()
136 if (LOC_GPS_LOCATION_HAS_BEARING & locGpsLocation.flags) { in convertLocation()
138 out.bearing = locGpsLocation.bearing; in convertLocation()
140 if (LOC_GPS_LOCATION_HAS_ACCURACY & locGpsLocation.flags) { in convertLocation()
142 out.accuracy = locGpsLocation.accuracy; in convertLocation()
156 out.timestamp = locGpsLocation.timestamp; in convertLocation()