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

  /cts/tests/tests/location/src/android/location/cts/
GnssMeasurementsConstellationTest.java 115 int constellationType = 0;
117 constellationType = measurement.getConstellationType();
121 if (constellationType != GnssStatus.CONSTELLATION_GPS
122 && constellationType != GnssStatus.CONSTELLATION_UNKNOWN) {
141 "ConstellationType != CONSTELLATION_GPS " +
142 "&& constellationType != GnssStatus.CONSTELLATION_UNKNOWN",
143 String.valueOf(constellationType),
TestGnssMeasurementListener.java 97 int constellationType = gnssMeasurement.getConstellationType();
103 if (constellationEventCount.containsKey(constellationType)) {
104 constellationEventCount.put(constellationType,
105 constellationEventCount.get(constellationType) + 1);
108 constellationEventCount.put(constellationType, 1);
110 if (constellationEventCount.get(constellationType) >= 4) {
GnssPseudorangeVerificationTest.java 164 int constellationType = measurement.getConstellationType();
165 if (!measurementConstellationMap.containsKey(constellationType)) {
166 measurementConstellationMap.put(constellationType, new ArrayList<>());
168 measurementConstellationMap.get(constellationType).add(measurement);
176 int constellationType = measurement.getConstellationType();
177 if (constellationType == GnssStatus.CONSTELLATION_GLONASS) {
209 int constellationType = measurement.getConstellationType();
211 if (constellationType == GnssStatus.CONSTELLATION_BEIDOU
212 || constellationType == GnssStatus.CONSTELLATION_QZSS) {
TestMeasurementUtil.java 327 int constellationType = measurement.getConstellationType();
329 validateSvidSub(softAssert, timeInNs, constellationType, svid);
333 int constellationType, int svid) {
337 switch (constellationType) {
408 int constellationType = measurement.getConstellationType();
426 switch (constellationType) {
629 private static String getReceivedSvTimeNsLogMessage(String constellationType, String state) {
631 + constellationType + ". State = " + state;
642 * @param constellationType Gnss Constellation type
645 SoftAssert softAssert, long timeInNs, int state, String constellationType) {
    [all...]
  /frameworks/base/location/java/android/location/
GpsStatus.java 156 final int constellationType =
166 if (constellationType == GnssStatus.CONSTELLATION_GLONASS) {
168 } else if (constellationType == GnssStatus.CONSTELLATION_BEIDOU) {
170 } else if (constellationType == GnssStatus.CONSTELLATION_SBAS) {
172 } else if ((constellationType != GnssStatus.CONSTELLATION_GPS) &&
173 (constellationType != GnssStatus.CONSTELLATION_QZSS)) {

Completed in 105 milliseconds