Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/btcore/fuzzer/
Dbtcore_property_fuzzer.cpp80 size_t uuidSize = sizeof(uint8_t) * bluetooth::Uuid::kNumBytes128; in process() local
82 mFdp->ConsumeData(uuid, uuidSize); in process()
89 mFdp->ConsumeData(uuid, uuidSize); in process()
/packages/apps/Nfc/src/com/android/nfc/handover/
DHandoverDataParser.java586 int uuidSize; in parseUuidFromBluetoothRecord() local
590 uuidSize = BluetoothUuid.UUID_BYTES_16_BIT; in parseUuidFromBluetoothRecord()
594 uuidSize = BluetoothUuid.UUID_BYTES_32_BIT; in parseUuidFromBluetoothRecord()
598 uuidSize = BluetoothUuid.UUID_BYTES_128_BIT; in parseUuidFromBluetoothRecord()
605 if (len == 0 || len % uuidSize != 0) { in parseUuidFromBluetoothRecord()
610 int num = len / uuidSize; in parseUuidFromBluetoothRecord()
612 byte[] data = new byte[uuidSize]; in parseUuidFromBluetoothRecord()