Home
last modified time | relevance | path

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

/packages/modules/Uwb/androidx_backend/tests/src/androidx/core/uwb/backend/impl/internal/
DConfigurationManagerTest.java156 int blockStrideLength = 5; in testCreateReconfigureParamsBlockStriding() local
158 ConfigurationManager.createReconfigureParamsBlockStriding(blockStrideLength); in testCreateReconfigureParamsBlockStriding()
160 assertEquals((int) params.getBlockStrideLength(), blockStrideLength); in testCreateReconfigureParamsBlockStriding() local
/packages/modules/Uwb/service/support_lib/test/
DFiraTests.java100 int blockStrideLength = 2; in testOpenSessionParams() local
168 .setBlockStrideLength(blockStrideLength) in testOpenSessionParams()
240 assertEquals(params.getBlockStrideLength(), blockStrideLength); in testOpenSessionParams() local
311 assertEquals(fromBundle.getBlockStrideLength(), blockStrideLength); in testOpenSessionParams() local
388 assertEquals(fromCopy.getBlockStrideLength(), blockStrideLength); in testOpenSessionParams() local
457 int blockStrideLength = 5; in testRangingReconfigureParams() local
487 .setBlockStrideLength(blockStrideLength) in testRangingReconfigureParams()
496 assertEquals((int) params.getBlockStrideLength(), blockStrideLength); in testRangingReconfigureParams() local
510 assertEquals((int) fromBundle.getBlockStrideLength(), blockStrideLength); in testRangingReconfigureParams() local
/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/fira/
DFiraRangingReconfigureParams.java82 @Nullable Integer blockStrideLength, in FiraRangingReconfigureParams() argument
95 mBlockStrideLength = blockStrideLength; in FiraRangingReconfigureParams()
387 public FiraRangingReconfigureParams.Builder setBlockStrideLength(int blockStrideLength) { in setBlockStrideLength() argument
388 mBlockStrideLength = blockStrideLength; in setBlockStrideLength()
DFiraOpenSessionParams.java285 int blockStrideLength, in FiraOpenSessionParams() argument
372 mBlockStrideLength = blockStrideLength; in FiraOpenSessionParams()
1657 public FiraOpenSessionParams.Builder setBlockStrideLength(int blockStrideLength) { in setBlockStrideLength() argument
1658 mBlockStrideLength = blockStrideLength; in setBlockStrideLength()
/packages/modules/Uwb/service/java/com/android/server/uwb/params/
DFiraEncoder.java315 Integer blockStrideLength = params.getBlockStrideLength(); in getTlvBufferFromFiraRangingReconfigureParams() local
325 if (blockStrideLength != null) { in getTlvBufferFromFiraRangingReconfigureParams()
327 (byte) blockStrideLength.intValue()); in getTlvBufferFromFiraRangingReconfigureParams()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbConfigurationManagerTest.java222 int blockStrideLength = 2; in getFiraParams() local
280 .setBlockStrideLength(blockStrideLength) in getFiraParams()
/packages/modules/Uwb/service/java/com/android/server/uwb/
DUwbShellCommand.java1034 int blockStrideLength = Integer.parseInt(getNextArgRequired()); in buildFiraReconfigureParams() local
1035 builder.setBlockStrideLength(blockStrideLength); in buildFiraReconfigureParams()