Home
last modified time | relevance | path

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

/frameworks/base/location/java/android/location/
DGpsStatus.java177 int constellationType = status.getConstellationType(i); in setStatus() local
185 if (constellationType == GnssStatus.CONSTELLATION_GLONASS) { in setStatus()
187 } else if (constellationType == GnssStatus.CONSTELLATION_BEIDOU) { in setStatus()
189 } else if (constellationType == GnssStatus.CONSTELLATION_SBAS) { in setStatus()
191 } else if ((constellationType != GnssStatus.CONSTELLATION_GPS) && in setStatus()
192 (constellationType != GnssStatus.CONSTELLATION_QZSS)) { in setStatus()
DGnssStatus.java327 public static String constellationTypeToString(@ConstellationType int constellationType) { in constellationTypeToString() argument
328 switch (constellationType) { in constellationTypeToString()
346 return Integer.toString(constellationType); in constellationTypeToString()
448 public Builder addSatellite(@ConstellationType int constellationType, in addSatellite() argument
460 mSatellites.add(new GnssSvInfo(constellationType, svid, cn0DbHz, elevation, azimuth, in addSatellite()
521 private GnssSvInfo(int constellationType, int svid, float cn0DbHz, in GnssSvInfo() argument
526 | ((constellationType & CONSTELLATION_TYPE_MASK) in GnssSvInfo()
DGnssSingleSatCorrection.java328 @GnssStatus.ConstellationType int constellationType) { in setConstellationType()
329 mConstellationType = constellationType; in setConstellationType()
/frameworks/base/services/core/java/com/android/server/location/gnss/
DGnssMetrics.java258 public void logConstellationType(int constellationType) { in logConstellationType() argument
259 if (constellationType >= mConstellationTypes.length) { in logConstellationType()
260 Log.e(TAG, "Constellation type " + constellationType + " is not valid."); in logConstellationType()
263 mConstellationTypes[constellationType] = true; in logConstellationType()