Home
last modified time | relevance | path

Searched refs:getAoaAzimuth (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbMetricsTest.java178 when(mTwoWayMeasurement.getAoaAzimuth()).thenReturn((float) AZIMUTH_DEFAULT_DEGREE); in setUp()
179 when(mDlTDoAMeasurement.getAoaAzimuth()).thenReturn((float) AZIMUTH_DEFAULT_DEGREE); in setUp()
180 when(mOwrAoaMeasurement.getAoaAzimuth()).thenReturn((float) AZIMUTH_DEFAULT_DEGREE); in setUp()
374 when(mTwoWayMeasurement.getAoaAzimuth()).thenReturn((float) -10.0); in testLoggingRangingResultInvalidDistance()
/packages/modules/Uwb/service/java/com/android/server/uwb/data/
DUwbOwrAoaMeasurement.java67 public float getAoaAzimuth() { in getAoaAzimuth() method in UwbOwrAoaMeasurement
DUwbTwoWayMeasurement.java83 public float getAoaAzimuth() { in getAoaAzimuth() method in UwbTwoWayMeasurement
DUwbDlTDoAMeasurement.java102 public float getAoaAzimuth() { in getAoaAzimuth() method in UwbDlTDoAMeasurement
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/data/
DUwbOwrAoaMeasurementTest.java72 assertThat(mUwbOwrAoaMeasurement.getAoaAzimuth()).isEqualTo(TEST_AOA_AZIMUTH_FLOAT); in testInitializeUwbOwrAoaMeasurement()
/packages/modules/Uwb/service/java/com/android/server/uwb/
DUwbMetrics.java304 mAzimuthDegree = (int) measurement.getAoaAzimuth(); in RangingReportEvent()
315 mAzimuthDegree = (int) measurement.getAoaAzimuth(); in RangingReportEvent()
326 mAzimuthDegree = (int) measurement.getAoaAzimuth(); in RangingReportEvent()
DUwbSessionNotificationManager.java750 uwbTwoWayMeasurement[i].getAoaAzimuth(), in getRangingReport()
801 uwbOwrAoaMeasurement.getAoaAzimuth(), in getRangingReport()
830 uwbDlTDoAMeasurements[i].getAoaAzimuth(), in getRangingReport()
/packages/modules/Uwb/service/java/com/android/server/uwb/advertisement/
DUwbAdvertiseManager.java182 double aoaAzimuth = owrAoaMeasurement.getAoaAzimuth(); in calculateAoaVariance()