HomeSort by relevance Sort by last modified time
    Searched refs:gpsLocation (Results 1 - 12 of 12) sorted by null

  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 128 time_t utcTime(location.gpsLocation.timestamp/1000);
217 if (location.gpsLocation.flags & GPS_LOCATION_HAS_BEARING)
219 float magTrack = location.gpsLocation.bearing;
222 float magTrack = location.gpsLocation.bearing - locationExtended.magneticDeviation;
229 length = snprintf(pMarker, lengthRemaining, "$GPVTG,%.1lf,T,%.1lf,M,", location.gpsLocation.bearing, magTrack);
244 if (location.gpsLocation.flags & GPS_LOCATION_HAS_SPEED)
246 float speedKnots = location.gpsLocation.speed * (3600.0/1852.0);
247 float speedKmPerHour = location.gpsLocation.speed * 3.6;
264 if (!(location.gpsLocation.flags & GPS_LOCATION_HAS_LAT_LONG))
292 if (location.gpsLocation.flags & GPS_LOCATION_HAS_LAT_LONG
    [all...]
loc_eng.cpp 766 !((mLocation.gpsLocation.flags &
769 (mLocation.gpsLocation.accuracy >
818 mLocation.gpsLocation.flags, mLocation.position_source,
819 mLocation.gpsLocation.latitude, mLocation.gpsLocation.longitude,
820 mLocation.gpsLocation.altitude, mLocation.gpsLocation.speed,
821 mLocation.gpsLocation.bearing, mLocation.gpsLocation.accuracy,
822 mLocation.gpsLocation.timestamp, mLocation.rawDataSize
    [all...]
loc.cpp 1148 gps_loc_cb(&location->gpsLocation);
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 124 time_t utcTime(location.gpsLocation.timestamp/1000);
213 if (location.gpsLocation.flags & GPS_LOCATION_HAS_BEARING)
215 float magTrack = location.gpsLocation.bearing;
218 float magTrack = location.gpsLocation.bearing - locationExtended.magneticDeviation;
225 length = snprintf(pMarker, lengthRemaining, "$GPVTG,%.1lf,T,%.1lf,M,", location.gpsLocation.bearing, magTrack);
240 if (location.gpsLocation.flags & GPS_LOCATION_HAS_SPEED)
242 float speedKnots = location.gpsLocation.speed * (3600.0/1852.0);
243 float speedKmPerHour = location.gpsLocation.speed * 3.6;
260 if (!(location.gpsLocation.flags & GPS_LOCATION_HAS_LAT_LONG))
288 if (location.gpsLocation.flags & GPS_LOCATION_HAS_LAT_LONG
    [all...]
loc_eng.cpp 708 !((mLocation.gpsLocation.flags &
711 (mLocation.gpsLocation.accuracy >
757 mLocation.gpsLocation.flags, mLocation.position_source,
758 mLocation.gpsLocation.latitude, mLocation.gpsLocation.longitude,
759 mLocation.gpsLocation.altitude, mLocation.gpsLocation.speed,
760 mLocation.gpsLocation.bearing, mLocation.gpsLocation.accuracy,
761 mLocation.gpsLocation.timestamp, mLocation.rawDataSize
    [all...]
loc.cpp 894 gps_loc_cb(&location->gpsLocation);
  /development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java 167 Location gpsLocation = null;
177 gpsLocation = requestUpdatesFromProvider(
180 if (gpsLocation != null) updateUILocation(gpsLocation);
186 gpsLocation = requestUpdatesFromProvider(
193 if (gpsLocation != null && networkLocation != null) {
194 updateUILocation(getBetterLocation(gpsLocation, networkLocation));
195 } else if (gpsLocation != null) {
196 updateUILocation(gpsLocation);
  /hardware/qcom/gps/loc_api/libloc_api-rpc-50001/libloc_api-rpc-glue/src/
LocApiRpc.cpp 700 location.gpsLocation.flags |= GPS_LOCATION_HAS_LAT_LONG;
701 location.gpsLocation.latitude = location_report_ptr->latitude;
702 location.gpsLocation.longitude = location_report_ptr->longitude;
707 location.gpsLocation.timestamp = location_report_ptr->timestamp_utc;
713 location.gpsLocation.flags |= GPS_LOCATION_HAS_ALTITUDE;
714 location.gpsLocation.altitude = location_report_ptr->altitude_wrt_ellipsoid;
721 location.gpsLocation.flags |= GPS_LOCATION_HAS_SPEED;
722 location.gpsLocation.speed = sqrt(location_report_ptr->speed_horizontal * location_report_ptr->speed_horizontal +
729 location.gpsLocation.flags |= GPS_LOCATION_HAS_BEARING;
730 location.gpsLocation.bearing = location_report_ptr->heading
    [all...]
  /hardware/qcom/gps/msm8960/core/
gps_extended_c.h 42 /** GpsLocation has valid "is indoor?" flag */
44 /** GpsLocation has valid floor number */
46 /** GpsLocation has valid map URL*/
48 /** GpsLocation has valid map index */
66 GpsLocation gpsLocation;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LocationManagerTest.java 115 Location gpsLocation = new Location(GPS_PROVIDER);
118 shadowLocationManager.setLastKnownLocation(GPS_PROVIDER, gpsLocation);
121 assertSame(locationManager.getLastKnownLocation(GPS_PROVIDER), gpsLocation);
  /hardware/qcom/gps/core/
gps_extended_c.h 42 /** GpsLocation has valid "is indoor?" flag */
44 /** GpsLocation has valid floor number */
46 /** GpsLocation has valid map URL*/
48 /** GpsLocation has valid map index */
82 GpsLocation gpsLocation;
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
StillCaptureTest.java 94 /*gpsLocation*/ sTestLocation0,
99 /*gpsLocation*/ sTestLocation1,
104 /*gpsLocation*/ sTestLocation2,
    [all...]

Completed in 238 milliseconds