Home
last modified time | relevance | path

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

/packages/apps/Nfc/src/com/android/nfc/handover/
DHandoverDataParser.java590 int uuidSize; in parseUuidFromBluetoothRecord() local
594 uuidSize = BluetoothUuid.UUID_BYTES_16_BIT; in parseUuidFromBluetoothRecord()
598 uuidSize = BluetoothUuid.UUID_BYTES_32_BIT; in parseUuidFromBluetoothRecord()
602 uuidSize = BluetoothUuid.UUID_BYTES_128_BIT; in parseUuidFromBluetoothRecord()
609 if (len == 0 || len % uuidSize != 0) { in parseUuidFromBluetoothRecord()
614 int num = len / uuidSize; in parseUuidFromBluetoothRecord()
616 byte[] data = new byte[uuidSize]; in parseUuidFromBluetoothRecord()