Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/map/
DBluetoothMapbMessage.java892 protected String encodeBinary(byte[] pduData, byte[] scAddressData) { in encodeBinary() argument
893 StringBuilder out = new StringBuilder((pduData.length + scAddressData.length) * 2); in encodeBinary()
894 for (int i = 0; i < scAddressData.length; i++) { in encodeBinary()
895 out.append(Integer.toString((scAddressData[i] >> 4) & 0x0f, 16)); // MS-nibble first in encodeBinary()
896 out.append(Integer.toString(scAddressData[i] & 0x0f, 16)); in encodeBinary()