Searched defs:uuids (Results 1 - 6 of 6) sorted by last modified time

/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothDeviceFilter.java100 abstract boolean matches(ParcelUuid[] uuids, BluetoothClass btClass); argument
110 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { argument
111 if (uuids != null) {
112 if (BluetoothUuid.containsAnyUuid(uuids, A2dpProfile.SINK_UUIDS)) {
115 if (BluetoothUuid.containsAnyUuid(uuids, HeadsetProfile.UUIDS)) {
131 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { argument
132 if (uuids != null) {
133 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.ObexObjectPush)) {
145 boolean matches(ParcelUuid[] uuids, BluetoothClass btClass) { argument
146 if (uuids !
159 matches(ParcelUuid[] uuids, BluetoothClass btClass) argument
[all...]
H A DLocalBluetoothProfileManager.java108 ParcelUuid[] uuids = adapter.getUuids();
110 // uuids may be null if Bluetooth is turned off
111 if (uuids != null) {
112 updateLocalProfiles(uuids);
142 * @param uuids
144 void updateLocalProfiles(ParcelUuid[] uuids) { argument
146 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.AudioSource)) {
158 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Handsfree_AG) ||
159 BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.HSP_AG)) {
172 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUui
325 updateProfiles(ParcelUuid[] uuids, ParcelUuid[] localUuids, Collection<LocalBluetoothProfile> profiles, Collection<LocalBluetoothProfile> removedProfiles, boolean isPanNapConnected, BluetoothDevice device) argument
[all...]
/packages/apps/Bluetooth/src/com/android/bluetooth/
H A DUtils.java112 public static byte[] uuidsToByteArray(ParcelUuid[] uuids) { argument
113 int length = uuids.length * BD_UUID_LEN;
118 for (int i = 0; i < uuids.length; i++) {
119 uuid = uuids[i].getUuid();
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterProperties.java165 * @param uuids the uuids to be set.
167 boolean setUuids(ParcelUuid[] uuids) { argument
170 AbstractionLayer.BT_PROPERTY_UUIDS, Utils.uuidsToByteArray(uuids));
H A DAdapterService.java204 b.putParcelable("uuids" + i, mUuids[i]);
210 private void processInitProfilePriorities (BluetoothDevice device, ParcelUuid[] uuids){ argument
218 (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hid) ||
219 BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Hogp)) &&
226 (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.AudioSink) ||
227 BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.AdvAudioDist)) &&
233 ((BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.HSP) ||
234 BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Handsfree)) &&
517 mUuids[i] = msg.getData().getParcelable("uuids" + i);
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DScanClient.java35 UUID[] uuids; field in class:ScanClient
49 ScanClient(int appIf, boolean isServer, UUID[] uuids) { argument
50 this(appIf, isServer, uuids, DEFAULT_SCAN_SETTINGS, null, null);
63 private ScanClient(int appIf, boolean isServer, UUID[] uuids, ScanSettings settings, argument
67 this.uuids = uuids;

Completed in 151 milliseconds