Home
last modified time | relevance | path

Searched refs:timeInNs (Results 1 – 7 of 7) sorted by relevance

/cts/tests/location/common/src/android/location/cts/common/
DTestMeasurementUtil.java156 long timeInNs) { in assertGnssClockFields() argument
158 timeInNs, in assertGnssClockFields()
160 String.valueOf(timeInNs), in assertGnssClockFields()
161 timeInNs >= 0L); in assertGnssClockFields()
167 long gpsTimeInNs = timeInNs - clock.getFullBiasNanos(); in assertGnssClockFields()
227 SoftAssert softAssert, long timeInNs) { in assertAllGnssMeasurementMandatoryFields() argument
229 verifySvid(measurement, softAssert, timeInNs); in assertAllGnssMeasurementMandatoryFields()
230 verifyReceivedSatelliteVehicleTimeInNs(measurement, softAssert, timeInNs); in assertAllGnssMeasurementMandatoryFields()
231 verifyAccumulatedDeltaRanges(measurement, softAssert, timeInNs); in assertAllGnssMeasurementMandatoryFields()
235 timeInNs, in assertAllGnssMeasurementMandatoryFields()
[all …]
/cts/tests/tests/keystore/src/android/keystore/cts/performance/
DPerformanceTestResult.java33 public void addSetupTime(double timeInNs) { in addSetupTime() argument
34 mSetupTime += timeInNs / PerformanceTestBase.MS_PER_NS; in addSetupTime()
41 public void addTeardownTime(double timeInNs) { in addTeardownTime() argument
42 mTeardownTime += timeInNs / PerformanceTestBase.MS_PER_NS; in addTeardownTime()
49 public void addMeasurement(double timeInNs) { in addMeasurement() argument
53 mSamples[mSampleCount++] = timeInNs / PerformanceTestBase.MS_PER_NS; in addMeasurement()
/cts/tests/location/location_gnss/src/android/location/cts/gnss/
DGnssMeasurementsConstellationTest.java107 long timeInNs = event.getClock().getTimeNanos(); in testGnssMultiConstellationSupported() local
110 timeInNs, in testGnssMultiConstellationSupported()
112 String.valueOf(timeInNs), in testGnssMultiConstellationSupported()
113 timeInNs >= 0L); in testGnssMultiConstellationSupported()
131 timeInNs, in testGnssMultiConstellationSupported()
DGnssMeasurementWhenNoLocationTest.java186 long timeInNs = firstEvent.getClock().getTimeNanos(); in testGnssMeasurementWhenNoLocation() local
188 timeInNs, // event time in ns in testGnssMeasurementWhenNoLocation()
193 TestMeasurementUtil.assertGnssClockFields(firstEvent.getClock(), softAssert, timeInNs); in testGnssMeasurementWhenNoLocation() local
198 measurement, softAssert, timeInNs); in testGnssMeasurementWhenNoLocation()
DGnssMeasurementValuesTest.java133 long timeInNs = event.getClock().getTimeNanos(); in testListenForGnssMeasurements() local
134 TestMeasurementUtil.assertGnssClockFields(event.getClock(), softAssert, timeInNs); in testListenForGnssMeasurements() local
138 measurement, softAssert, timeInNs); in testListenForGnssMeasurements()
DGnssPseudorangeVerificationTest.java155 long timeInNs = event.getClock().getTimeNanos(); in testPseudorangeValue() local
156 TestMeasurementUtil.assertGnssClockFields(event.getClock(), softAssert, timeInNs); in testPseudorangeValue() local
162 validatePseudorange(measurements, softAssert, timeInNs); in testPseudorangeValue()
219 SoftAssert softAssert, long timeInNs) { in validatePseudorange() argument
243 timeInNs, in validatePseudorange()
/cts/tests/location/location_privileged/src/android/location/cts/privileged/
DGnssMeasurementValuesTest.java153 long timeInNs = event.getClock().getTimeNanos(); in testListenForGnssMeasurements() local
155 … TestMeasurementUtil.assertAllGnssMeasurementSystemFields(measurement, softAssert, timeInNs); in testListenForGnssMeasurements()