HomeSort by relevance Sort by last modified time
    Searched refs:constellationType (Results 1 - 6 of 6) 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 171 int constellationType = measurement.getConstellationType();
172 if (!measurementConstellationMap.containsKey(constellationType)) {
173 measurementConstellationMap.put(constellationType, new ArrayList<>());
175 measurementConstellationMap.get(constellationType).add(measurement);
183 int constellationType = measurement.getConstellationType();
184 if (constellationType == GnssStatus.CONSTELLATION_GLONASS) {
216 int constellationType = measurement.getConstellationType();
218 if (constellationType == GnssStatus.CONSTELLATION_BEIDOU
219 || constellationType == GnssStatus.CONSTELLATION_QZSS) {
TestMeasurementUtil.java 338 int constellationType = measurement.getConstellationType();
340 validateSvidSub(softAssert, timeInNs, constellationType, svid);
344 int constellationType, int svid) {
348 switch (constellationType) {
419 int constellationType = measurement.getConstellationType();
437 switch (constellationType) {
640 private static String getReceivedSvTimeNsLogMessage(String constellationType, String state) {
642 + constellationType + ". State = " + state;
653 * @param constellationType Gnss Constellation type
656 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)) {
  /frameworks/base/location/tests/locationtests/src/android/location/
SatelliteInfo.java 51 public SatelliteInfo(int svid, int constellationType, boolean hasEphemris, boolean hasAlmanac,
55 setRange(mSvidWithFlag, constellationType, CONSTELLATION_TYPE_SHIFT_WIDTH, SVID_SHIFT_WIDTH);
63 this.mConstellationType = constellationType;

Completed in 222 milliseconds