Home
last modified time | relevance | path

Searched refs:constellationType (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/location/java/android/location/
DGpsStatus.java158 final int constellationType = in setStatus() local
168 if (constellationType == GnssStatus.CONSTELLATION_GLONASS) { in setStatus()
170 } else if (constellationType == GnssStatus.CONSTELLATION_BEIDOU) { in setStatus()
172 } else if (constellationType == GnssStatus.CONSTELLATION_SBAS) { in setStatus()
174 } else if ((constellationType != GnssStatus.CONSTELLATION_GPS) && in setStatus()
175 (constellationType != GnssStatus.CONSTELLATION_QZSS)) { in setStatus()
DGnssStatus.java267 public static String constellationTypeToString(@ConstellationType int constellationType) { in constellationTypeToString() argument
268 switch (constellationType) { in constellationTypeToString()
286 return Integer.toString(constellationType); in constellationTypeToString()
DGnssSingleSatCorrection.java327 @GnssStatus.ConstellationType int constellationType) { in setConstellationType()
328 mConstellationType = constellationType; in setConstellationType()
/frameworks/base/location/tests/locationtests/src/android/location/
DSatelliteInfo.java51 public SatelliteInfo(int svid, int constellationType, boolean hasEphemris, boolean hasAlmanac, in SatelliteInfo() argument
55 … setRange(mSvidWithFlag, constellationType, CONSTELLATION_TYPE_SHIFT_WIDTH, SVID_SHIFT_WIDTH); in SatelliteInfo()
63 this.mConstellationType = constellationType; in SatelliteInfo()
/frameworks/base/location/java/com/android/internal/location/gnssmetrics/
DGnssMetrics.java168 public void logConstellationType(int constellationType) { in logConstellationType() argument
169 if (constellationType >= mConstellationTypes.length) { in logConstellationType()
170 Log.e(TAG, "Constellation type " + constellationType + " is not valid."); in logConstellationType()
173 mConstellationTypes[constellationType] = true; in logConstellationType()
/frameworks/base/services/core/java/com/android/server/location/
DGnssLocationProvider.java1497 int constellationType = in handleReportSvStatus() local
1500 mGnssMetrics.logConstellationType(constellationType); in handleReportSvStatus()