Searched defs:BD_ADDR_LEN (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/
H A DUtils.java54 static final int BD_ADDR_LEN = 6; // bytes field in class:Utils
58 if (address == null || address.length != BD_ADDR_LEN) {
72 byte[] output = new byte[BD_ADDR_LEN];
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterProperties.java71 private static final int BD_ADDR_LEN = 6; // in bytes field in class:AdapterProperties
777 int number = val.length / BD_ADDR_LEN;
778 byte[] addrByte = new byte[BD_ADDR_LEN];
780 System.arraycopy(val, j * BD_ADDR_LEN, addrByte, 0, BD_ADDR_LEN);

Completed in 24 milliseconds