Home
last modified time | relevance | path

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

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