Home
last modified time | relevance | path

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

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