HomeSort by relevance Sort by last modified time
    Searched defs:uuids (Results 1 - 12 of 12) sorted by null

  /external/bluetooth/bluez/src/
device.h 109 const char **uuids; member in struct:btd_device_driver
110 int (*probe) (struct btd_device *device, GSList *uuids);
glib-helper.c 586 gchar **uuids; local
593 uuids = g_strsplit(str, " ", 0);
594 if (!uuids)
597 while (uuids[i]) {
598 l = g_slist_append(l, uuids[i]);
602 g_free(uuids);
device.c 115 GSList *uuids; member in struct:btd_device
232 g_slist_foreach(device->uuids, (GFunc) g_free, NULL);
233 g_slist_free(device->uuids);
273 char **uuids; local
344 /* UUIDs */
345 uuids = g_new0(char *, g_slist_length(device->uuids) + 1);
346 for (i = 0, l = device->uuids; l; l = l->next, i++)
347 uuids[i] = l->data;
348 dict_append_array(&dict, "UUIDs", DBUS_TYPE_STRING, &uuids, i)
1241 GSList *l, *uuids = NULL; local
1263 GSList *uuids = NULL; local
1405 char **uuids; local
    [all...]
adapter.c 1061 char **uuids; local
1065 uuids = g_new0(char *, sdp_list_len(adapter->services) + 1);
1069 uuids[i] = bt_uuid2string(&rec->svclass);
1073 ADAPTER_INTERFACE, "UUIDs", DBUS_TYPE_STRING, &uuids);
1075 g_strfreev(uuids);
1286 char **devices, **uuids; local
1361 /* UUIDs */
1362 uuids = g_new0(char *, sdp_list_len(adapter->services) + 1);
1366 uuids[i] = bt_uuid2string(&rec->svclass)
2225 GSList *uuids = bt_string2list(value); local
    [all...]
  /packages/apps/Email/src/com/android/email/
Preferences.java 71 String[] uuids = accountUuids.split(","); local
72 Account[] accounts = new Account[uuids.length];
73 for (int i = 0, length = uuids.length; i < length; i++) {
74 accounts[i] = new Account(this, uuids[i]);
95 String[] uuids = accountUuids.split(","); local
96 for (int i = 0, length = uuids.length; i < length; i++) {
97 if (uuid.equals(uuids[i])) {
Account.java 253 String[] uuids = preferences.mSharedPreferences.getString("accountUuids", "").split(","); local
255 for (int i = 0, length = uuids.length; i < length; i++) {
256 if (!uuids[i].equals(mUuid)) {
260 sb.append(uuids[i]);
  /external/qemu/hw/
bt-sdp.c 31 int uuids; member in struct:bt_l2cap_sdp_state_s::sdp_service_record_s
99 hi = record->uuids;
597 int *uuids)
605 (*uuids) ++;
623 len += sdp_attr_max_size(element ++, uuids);
705 record->uuids = 0;
709 &record->uuids);
711 record->uuids = 1 << ffs(record->uuids - 1);
715 qemu_mallocz(record->uuids * sizeof(*record->uuid))
    [all...]
  /frameworks/base/core/java/android/server/
BluetoothA2dpService.java 203 ParcelUuid[] uuids = mBluetoothService.getRemoteUuids(device.getAddress()); local
204 if (uuids != null && BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.AudioSink)) {
BluetoothService.java 116 // The timeout used to sent the UUIDs Intent
120 /** Always retrieve RFCOMM channel for these SDP UUIDs */
1538 ParcelUuid[] uuids = new ParcelUuid[uuidStrings.length]; local
    [all...]
  /packages/apps/Phone/src/com/android/phone/
BluetoothHeadsetService.java 566 ParcelUuid[] uuids = device.getUuids(); local
568 if (uuids != null) {
569 if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.Handsfree)) {
580 } else if (BluetoothUuid.isUuidPresent(uuids, BluetoothUuid.HSP)) {
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothSettings.java 298 ParcelUuid[] uuids = cachedDevice.getDevice().getUuids(); local
303 if (uuids != null)
304 if (BluetoothUuid.containsAnyUuid(uuids,
312 if (uuids != null) {
313 if (BluetoothUuid.containsAnyUuid(uuids,
316 if (BluetoothUuid.containsAnyUuid(uuids,
CachedBluetoothDevice.java 82 * again with the new UUIDs
214 // Attempt to connect if UUIDs are available. Otherwise,
223 // If UUIDs are not available yet, connect will be happen
509 ParcelUuid[] uuids = mDevice.getUuids(); local
510 if (uuids == null) return false;
512 LocalBluetoothProfileManager.updateProfiles(uuids, mProfiles);
543 for (int i = 0; i < uuids.length; i++) {
544 Log.v(TAG, " " + uuids[i]);

Completed in 300 milliseconds