Home
last modified time | relevance | path

Searched refs:byteIndex (Results 1 – 4 of 4) sorted by relevance

/packages/services/Car/libs/obd2-lib/src/com/android/car/obd2/
DObd2Connection.java279 for (int byteIndex = 0; byteIndex < 4; ++byteIndex) { in getSupportedPIDs()
281 if (fourByteBitSet.getBit(byteIndex, bitIndex)) { in getSupportedPIDs()
282 int command = basePid + 8 * byteIndex + 7 - bitIndex; in getSupportedPIDs()
/packages/modules/Uwb/service/java/com/android/server/uwb/params/
DAliroDecoder.java178 for (int byteIndex = 0; byteIndex < syncCodes.length; byteIndex++) { in getAliroSpecificationParamsFromTlvBuffer()
179 byte syncCodeByte = syncCodes[byteIndex]; in getAliroSpecificationParamsFromTlvBuffer()
182 int syncCodeValue = (byteIndex * 8) + bitIndex + 1; in getAliroSpecificationParamsFromTlvBuffer()
DCccDecoder.java184 for (int byteIndex = 0; byteIndex < syncCodes.length; byteIndex++) { in getCccSpecificationParamsFromTlvBuffer()
185 byte syncCodeByte = syncCodes[byteIndex]; in getCccSpecificationParamsFromTlvBuffer()
188 int syncCodeValue = (byteIndex * 8) + bitIndex + 1; in getCccSpecificationParamsFromTlvBuffer()
/packages/modules/Connectivity/service-t/src/com/android/server/connectivity/mdns/
DMdnsNsecRecord.java117 final int byteIndex = typeLowOrder / 8; in writeData() local
125 blockLength = Math.max(blockLength, byteIndex + 1); in writeData()