Home
last modified time | relevance | path

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

/packages/modules/Uwb/service/java/com/android/server/uwb/params/
DAliroDecoder.java177 byte[] syncCodes = tlvs.getByteArray(CCC_SUPPORTED_SYNC_CODES); in getAliroSpecificationParamsFromTlvBuffer()
178 for (int byteIndex = 0; byteIndex < syncCodes.length; byteIndex++) { in getAliroSpecificationParamsFromTlvBuffer()
179 byte syncCodeByte = syncCodes[byteIndex]; in getAliroSpecificationParamsFromTlvBuffer()
188 int syncCodes = ByteBuffer.wrap(tlvs.getByteArray(CCC_SUPPORTED_SYNC_CODES)).getInt(); in getAliroSpecificationParamsFromTlvBuffer() local
190 if (isBitSet(syncCodes, 1 << i)) { in getAliroSpecificationParamsFromTlvBuffer()
DCccDecoder.java183 byte[] syncCodes = tlvs.getByteArray(CCC_SUPPORTED_SYNC_CODES); in getCccSpecificationParamsFromTlvBuffer()
184 for (int byteIndex = 0; byteIndex < syncCodes.length; byteIndex++) { in getCccSpecificationParamsFromTlvBuffer()
185 byte syncCodeByte = syncCodes[byteIndex]; in getCccSpecificationParamsFromTlvBuffer()
194 int syncCodes = ByteBuffer.wrap(tlvs.getByteArray(CCC_SUPPORTED_SYNC_CODES)).getInt(); in getCccSpecificationParamsFromTlvBuffer() local
196 if (isBitSet(syncCodes, 1 << i)) { in getCccSpecificationParamsFromTlvBuffer()
/packages/modules/Uwb/service/support_lib/test/
DGenericTests.java123 Integer[] syncCodes = new Integer[] {10, 23}; in testSpecificationParams() local
145 for (int syncCode : syncCodes) { in testSpecificationParams()
204 assertArrayEquals(cccSpecificationParams.getSyncCodes().toArray(), syncCodes); in testSpecificationParams() local
/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/ccc/
DCccSpecificationParams.java82 @SyncCodeIndex List<Integer> syncCodes, in CccSpecificationParams() argument
94 mSyncCodes = syncCodes; in CccSpecificationParams()
/packages/modules/Uwb/service/support_lib/src/com/google/uwb/support/aliro/
DAliroSpecificationParams.java83 @SyncCodeIndex List<Integer> syncCodes, in AliroSpecificationParams() argument
95 mSyncCodes = syncCodes; in AliroSpecificationParams()
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbServiceCoreTest.java1950 Integer[] syncCodes = in getTestCccSpecificationParams() local
1980 for (int syncCode : syncCodes) { in getTestCccSpecificationParams()
2022 Integer[] syncCodes = in getTestAliroSpecificationParams() local
2053 for (int syncCode : syncCodes) { in getTestAliroSpecificationParams()