Home
last modified time | relevance | path

Searched refs:chapsPerSlot (Results 1 – 6 of 6) sorted by relevance

/packages/modules/Uwb/service/support_lib/test/
DAliroTests.java93 @AliroParams.ChapsPerSlot int chapsPerSlot = AliroParams.CHAPS_PER_SLOT_6; in testOpenRangingParams() local
117 .setNumChapsPerSlot(chapsPerSlot) in testOpenRangingParams()
143 assertEquals(params.getNumChapsPerSlot(), chapsPerSlot); in testOpenRangingParams() local
161 assertEquals(fromBundle.getNumChapsPerSlot(), chapsPerSlot); in testOpenRangingParams() local
294 for (int chapsPerSlot : CHAPS_PER_SLOTS) { in testSpecificationParams()
295 paramsBuilder.addChapsPerSlot(chapsPerSlot); in testSpecificationParams()
361 for (int chapsPerSlot : CHAPS_PER_SLOTS) { in testSpecificationParams_whenNoChannelsSet()
362 paramsBuilder.addChapsPerSlot(chapsPerSlot); in testSpecificationParams_whenNoChannelsSet()
DCccTests.java91 @CccParams.ChapsPerSlot int chapsPerSlot = CccParams.CHAPS_PER_SLOT_6; in testOpenRangingParams() local
114 .setNumChapsPerSlot(chapsPerSlot) in testOpenRangingParams()
140 assertEquals(params.getNumChapsPerSlot(), chapsPerSlot); in testOpenRangingParams() local
158 assertEquals(fromBundle.getNumChapsPerSlot(), chapsPerSlot); in testOpenRangingParams() local
289 for (int chapsPerSlot : CHAPS_PER_SLOTS) { in testSpecificationParams()
290 paramsBuilder.addChapsPerSlot(chapsPerSlot); in testSpecificationParams()
355 for (int chapsPerSlot : CHAPS_PER_SLOTS) { in testSpecificationParams_whenNoChannelsSet()
356 paramsBuilder.addChapsPerSlot(chapsPerSlot); in testSpecificationParams_whenNoChannelsSet()
DGenericTests.java142 for (int chapsPerSlot : chapsPerSlots) { in testSpecificationParams()
143 paramsBuilder.addChapsPerSlot(chapsPerSlot); in testSpecificationParams()
/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/ccc/
DCccSpecificationParams.java81 @ChapsPerSlot List<Integer> chapsPerSlot, in CccSpecificationParams() argument
93 mChapsPerSlot = chapsPerSlot; in CccSpecificationParams()
173 for (int chapsPerSlot : checkNotNull(bundle.getIntArray(KEY_CHAPS_PER_SLOTS))) { in parseVersion1()
174 builder.addChapsPerSlot(chapsPerSlot); in parseVersion1()
360 public Builder addChapsPerSlot(@ChapsPerSlot int chapsPerSlot) { in addChapsPerSlot() argument
361 mChapsPerSlot.add(chapsPerSlot); in addChapsPerSlot()
/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/aliro/
DAliroSpecificationParams.java82 @ChapsPerSlot List<Integer> chapsPerSlot, in AliroSpecificationParams() argument
94 mChapsPerSlot = chapsPerSlot; in AliroSpecificationParams()
174 for (int chapsPerSlot : checkNotNull(bundle.getIntArray(KEY_CHAPS_PER_SLOTS))) { in parseVersion1()
175 builder.addChapsPerSlot(chapsPerSlot); in parseVersion1()
361 public Builder addChapsPerSlot(@ChapsPerSlot int chapsPerSlot) { in addChapsPerSlot() argument
362 mChapsPerSlot.add(chapsPerSlot); in addChapsPerSlot()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbServiceCoreTest.java1976 for (int chapsPerSlot : chapsPerSlots) { in getTestCccSpecificationParams()
1977 paramsBuilder.addChapsPerSlot(chapsPerSlot); in getTestCccSpecificationParams()
2049 for (int chapsPerSlot : chapsPerSlots) { in getTestAliroSpecificationParams()
2050 paramsBuilder.addChapsPerSlot(chapsPerSlot); in getTestAliroSpecificationParams()