Home
last modified time | relevance | path

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

/packages/modules/Nfc/NfcNci/src/com/android/nfc/handover/
DHandoverDataParser.java609 int uuidSize; in parseUuidFromBluetoothRecord() local
613 uuidSize = BluetoothUuid.UUID_BYTES_16_BIT; in parseUuidFromBluetoothRecord()
617 uuidSize = BluetoothUuid.UUID_BYTES_32_BIT; in parseUuidFromBluetoothRecord()
621 uuidSize = BluetoothUuid.UUID_BYTES_128_BIT; in parseUuidFromBluetoothRecord()
628 if (len == 0 || len % uuidSize != 0) { in parseUuidFromBluetoothRecord()
633 int num = len / uuidSize; in parseUuidFromBluetoothRecord()
635 byte[] data = new byte[uuidSize]; in parseUuidFromBluetoothRecord()