Searched refs:BluetoothUuid (Results 1 – 18 of 18) sorted by relevance
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/ |
D | LocalBluetoothProfileManager.java | 30 import android.bluetooth.BluetoothUuid; 159 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.AudioSource)) { in updateLocalProfiles() 171 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.AudioSink)) { in updateLocalProfiles() 183 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Handsfree_AG) || in updateLocalProfiles() 184 BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.HSP_AG)) { in updateLocalProfiles() 197 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Handsfree)) { in updateLocalProfiles() 213 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.MNS)) { in updateLocalProfiles() 229 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.ObexObjectPush)) { in updateLocalProfiles() 442 if ((BluetoothUuid.isUuidPresent(localUuids, BluetoothUuid.HSP_AG) && in updateProfiles() 443 BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.HSP)) || in updateProfiles() [all …]
|
D | BluetoothDeviceFilter.java | 21 import android.bluetooth.BluetoothUuid; 112 if (BluetoothUuid.containsAnyUuid(uuids, A2dpProfile.SINK_UUIDS)) { in matches() 115 if (BluetoothUuid.containsAnyUuid(uuids, HeadsetProfile.UUIDS)) { in matches() 133 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.ObexObjectPush)) { in matches() 147 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.PANU)) { in matches() 161 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.NAP)) { in matches()
|
D | PbapServerProfile.java | 23 import android.bluetooth.BluetoothUuid; 47 BluetoothUuid.HSP, 48 BluetoothUuid.Handsfree, 49 BluetoothUuid.PBAP_PCE
|
D | MapProfile.java | 24 import android.bluetooth.BluetoothUuid; 49 BluetoothUuid.MAP, 50 BluetoothUuid.MNS, 51 BluetoothUuid.MAS,
|
D | MapClientProfile.java | 24 import android.bluetooth.BluetoothUuid; 49 BluetoothUuid.MAP, 50 BluetoothUuid.MNS, 51 BluetoothUuid.MAS,
|
D | HfpClientProfile.java | 24 import android.bluetooth.BluetoothUuid; 48 BluetoothUuid.HSP_AG, 49 BluetoothUuid.Handsfree_AG,
|
D | A2dpSinkProfile.java | 24 import android.bluetooth.BluetoothUuid; 45 BluetoothUuid.AudioSource, 46 BluetoothUuid.AdvAudioDist,
|
D | HeadsetProfile.java | 24 import android.bluetooth.BluetoothUuid; 49 BluetoothUuid.HSP, 50 BluetoothUuid.Handsfree,
|
D | A2dpProfile.java | 26 import android.bluetooth.BluetoothUuid; 53 BluetoothUuid.AudioSink, 54 BluetoothUuid.AdvAudioDist,
|
D | PbapClientProfile.java | 24 import android.bluetooth.BluetoothUuid; 46 BluetoothUuid.PBAP_PSE,
|
D | SapProfile.java | 24 import android.bluetooth.BluetoothUuid; 49 BluetoothUuid.SAP,
|
D | CachedBluetoothDevice.java | 22 import android.bluetooth.BluetoothUuid; 524 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hogp)) { in onUuidChanged() 801 if (BluetoothUuid.containsAnyUuid(uuids, PbapServerProfile.PBAB_CLIENT_UUIDS)) { in processPhonebookAccess()
|
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/ |
D | BluetoothUuidTest.java | 37 BluetoothUuid.parseUuidFrom(uuid16)); in testUuidParser() 42 BluetoothUuid.parseUuidFrom(uuid32)); in testUuidParser() 48 BluetoothUuid.parseUuidFrom(uuid128)); in testUuidParser() 53 assertTrue(BluetoothUuid.is16BitUuid( in testUuidType() 55 assertFalse(BluetoothUuid.is32BitUuid( in testUuidType() 58 assertFalse(BluetoothUuid.is16BitUuid( in testUuidType() 60 assertTrue(BluetoothUuid.is32BitUuid( in testUuidType() 62 assertFalse(BluetoothUuid.is32BitUuid( in testUuidType()
|
/frameworks/base/core/java/android/bluetooth/le/ |
D | ScanRecord.java | 20 import android.bluetooth.BluetoothUuid; 209 dataLength, BluetoothUuid.UUID_BYTES_16_BIT, serviceUuids); in parseFromBytes() 214 BluetoothUuid.UUID_BYTES_32_BIT, serviceUuids); in parseFromBytes() 219 BluetoothUuid.UUID_BYTES_128_BIT, serviceUuids); in parseFromBytes() 232 int serviceUuidLength = BluetoothUuid.UUID_BYTES_16_BIT; in parseFromBytes() 234 serviceUuidLength = BluetoothUuid.UUID_BYTES_32_BIT; in parseFromBytes() 236 serviceUuidLength = BluetoothUuid.UUID_BYTES_128_BIT; in parseFromBytes() 241 ParcelUuid serviceDataUuid = BluetoothUuid.parseUuidFrom( in parseFromBytes() 290 serviceUuids.add(BluetoothUuid.parseUuidFrom(uuidBytes)); in parseServiceUuid()
|
D | BluetoothLeAdvertiser.java | 22 import android.bluetooth.BluetoothUuid; 481 if (BluetoothUuid.is16BitUuid(uuid)) { 483 } else if (BluetoothUuid.is32BitUuid(uuid)) { 492 num16BitUuids * BluetoothUuid.UUID_BYTES_16_BIT; 497 num32BitUuids * BluetoothUuid.UUID_BYTES_32_BIT; 502 num128BitUuids * BluetoothUuid.UUID_BYTES_128_BIT; 506 int uuidLen = BluetoothUuid.uuidToBytes(uuid).length;
|
/frameworks/base/core/java/android/bluetooth/ |
D | BluetoothUuid.java | 31 public final class BluetoothUuid { class
|
D | BluetoothA2dp.java | 588 if (BluetoothUuid.isAvrcpTarget(uuid)) { in shouldSendVolumeKeys()
|
/frameworks/base/ |
D | compiled-classes-phone | 734 android.bluetooth.BluetoothUuid
|