OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:uuidval
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/core/java/android/bluetooth/
BluetoothUuid.java
292
int
uuidVal
= getServiceIdentifierFromParcelUuid(uuid);
293
uuidBytes[0] = (byte)(
uuidVal
& 0xFF);
294
uuidBytes[1] = (byte)((
uuidVal
& 0xFF00) >> 8);
300
int
uuidVal
= getServiceIdentifierFromParcelUuid(uuid);
301
uuidBytes[0] = (byte)(
uuidVal
& 0xFF);
302
uuidBytes[1] = (byte)((
uuidVal
& 0xFF00) >> 8);
303
uuidBytes[2] = (byte)((
uuidVal
& 0xFF0000) >> 16);
304
uuidBytes[3] = (byte)((
uuidVal
& 0xFF000000) >> 24);
Completed in 84 milliseconds