Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DLocalBluetoothProfileManager.java30 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 …]
DBluetoothDeviceFilter.java21 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()
DPbapServerProfile.java23 import android.bluetooth.BluetoothUuid;
47 BluetoothUuid.HSP,
48 BluetoothUuid.Handsfree,
49 BluetoothUuid.PBAP_PCE
DMapProfile.java24 import android.bluetooth.BluetoothUuid;
49 BluetoothUuid.MAP,
50 BluetoothUuid.MNS,
51 BluetoothUuid.MAS,
DMapClientProfile.java24 import android.bluetooth.BluetoothUuid;
49 BluetoothUuid.MAP,
50 BluetoothUuid.MNS,
51 BluetoothUuid.MAS,
DHfpClientProfile.java24 import android.bluetooth.BluetoothUuid;
48 BluetoothUuid.HSP_AG,
49 BluetoothUuid.Handsfree_AG,
DA2dpSinkProfile.java24 import android.bluetooth.BluetoothUuid;
45 BluetoothUuid.AudioSource,
46 BluetoothUuid.AdvAudioDist,
DHeadsetProfile.java24 import android.bluetooth.BluetoothUuid;
49 BluetoothUuid.HSP,
50 BluetoothUuid.Handsfree,
DA2dpProfile.java26 import android.bluetooth.BluetoothUuid;
53 BluetoothUuid.AudioSink,
54 BluetoothUuid.AdvAudioDist,
DPbapClientProfile.java24 import android.bluetooth.BluetoothUuid;
46 BluetoothUuid.PBAP_PSE,
DSapProfile.java24 import android.bluetooth.BluetoothUuid;
49 BluetoothUuid.SAP,
DCachedBluetoothDevice.java22 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/
DBluetoothUuidTest.java37 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/
DScanRecord.java20 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()
DBluetoothLeAdvertiser.java22 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/
DBluetoothUuid.java31 public final class BluetoothUuid { class
DBluetoothA2dp.java588 if (BluetoothUuid.isAvrcpTarget(uuid)) { in shouldSendVolumeKeys()
/frameworks/base/
Dcompiled-classes-phone734 android.bluetooth.BluetoothUuid