Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/bluetooth/
DBluetoothUuid.java260 long shortUuid; in parseUuidFrom() local
262 shortUuid = uuidBytes[0] & 0xFF; in parseUuidFrom()
263 shortUuid += (uuidBytes[1] & 0xFF) << 8; in parseUuidFrom()
265 shortUuid = uuidBytes[0] & 0xFF; in parseUuidFrom()
266 shortUuid += (uuidBytes[1] & 0xFF) << 8; in parseUuidFrom()
267 shortUuid += (uuidBytes[2] & 0xFF) << 16; in parseUuidFrom()
268 shortUuid += (uuidBytes[3] & 0xFF) << 24; in parseUuidFrom()
270 long msb = BASE_UUID.getUuid().getMostSignificantBits() + (shortUuid << 32); in parseUuidFrom()