Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/bluetooth/
DBluetoothUuid.java277 long shortUuid; in parseUuidFrom() local
279 shortUuid = uuidBytes[0] & 0xFF; in parseUuidFrom()
280 shortUuid += (uuidBytes[1] & 0xFF) << 8; in parseUuidFrom()
282 shortUuid = uuidBytes[0] & 0xFF; in parseUuidFrom()
283 shortUuid += (uuidBytes[1] & 0xFF) << 8; in parseUuidFrom()
284 shortUuid += (uuidBytes[2] & 0xFF) << 16; in parseUuidFrom()
285 shortUuid += (uuidBytes[3] & 0xFF) << 24; in parseUuidFrom()
287 long msb = BASE_UUID.getUuid().getMostSignificantBits() + (shortUuid << 32); in parseUuidFrom()