Searched refs:readByte (Results 1 – 4 of 4) sorted by relevance
/btstack/platform/daemon/binding/java/src/com/bluekitchen/btstack/ |
H A D | Util.java | 13 public static int readByte(byte[] buffer, int offset){ in readByte() method in Util 20 return readByte(buffer, offset) | (readByte(buffer, offset + 1) << 8); in readBt16() 24 …return readByte(buffer, offset) | (readByte(buffer, offset + 1) << 8) | (readByte(buffer, offset +… in readBt24() 28 …return (((long) readByte(buffer, offset+3)) << 24) | readByte(buffer, offset) | (readByte(buffer, … in readBt32() 110 t.append(String.format("0x%02x, ", readByte(buffer, i))); in asHexdump() 144 …return (((long) readByte(buffer, offset)) << 24) | (readByte(buffer, offset + 1) << 16) | (readByt… in readNet32()
|
H A D | Event.java | 19 return Util.readByte(data, 0); in getEventType()
|
H A D | BD_ADDR.java | 34 buffer.append(String.format("%02X", Util.readByte(address, i))); in toString()
|
/btstack/port/mtk/LEScan/src/com/bluekitchen/lescan/ |
H A D | MainActivity.java | 555 …addTempMessage(String.format("counter %d, status %d, RSSI: %ddBm", counter, Util.readByte(data, 0)… in trackRSSI()
|