HomeSort by relevance Sort by last modified time
    Searched full:uuids (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/bluetooth/bluez/input/
manager.c 59 static int hid_device_probe(struct btd_device *device, GSList *uuids)
63 const sdp_record_t *rec = btd_device_get_record(device, uuids->data);
83 static int headset_probe(struct btd_device *device, GSList *uuids)
94 if (!g_slist_find_custom(uuids, HSP_HS_UUID,
98 record = btd_device_get_record(device, uuids->data);
156 .uuids = BTD_UUIDS(HID_UUID),
163 .uuids = BTD_UUIDS(HSP_HS_UUID),
  /external/bluetooth/bluez/network/
manager.c 75 static int network_probe(struct btd_device *device, GSList *uuids, uint16_t id)
98 static int panu_probe(struct btd_device *device, GSList *uuids)
100 return network_probe(device, uuids, BNEP_SVC_PANU);
108 static int gn_probe(struct btd_device *device, GSList *uuids)
110 return network_probe(device, uuids, BNEP_SVC_GN);
118 static int nap_probe(struct btd_device *device, GSList *uuids)
120 return network_probe(device, uuids, BNEP_SVC_NAP);
148 .uuids = BTD_UUIDS(PANU_UUID),
155 .uuids = BTD_UUIDS(GN_UUID),
162 .uuids = BTD_UUIDS(NAP_UUID)
    [all...]
  /external/bluetooth/bluez/serial/
manager.c 116 static int port_probe(struct btd_device *device, GSList *uuids)
118 while (uuids) {
119 serial_probe(device, uuids->data);
120 uuids = uuids->next;
133 .uuids = BTD_UUIDS(RFCOMM_UUID_STR),
  /external/e2fsprogs/debian/
uuid-dev.README.Debian 3 draft-leach-uuids-guids-01.txt has been removed. It can be obtained
6 search for the string "draft-leach-uuids-guids-01".
  /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])) {
  /external/e2fsprogs/lib/uuid/
uuid_time.3.in 47 certain types of UUIDs. This function can only reasonably expect to
48 extract the creation time for UUIDs created with the
50 function. It may or may not work with UUIDs created by other mechanisms.
uuid.3.in 40 generates UUIDs compatible with those created by the Open Software
44 The UUIDs generated by this library can be reasonably expected to be
uuid_generate.3.in 81 The new UUID can reasonably be considered unique among all UUIDs created
82 on the local system, and among UUIDs created on other systems in the past
copy.c 2 * copy.c --- copy UUIDs
uuidP.h 2 * uuid.h -- private header file for uuids
uuid_compare.3.in 34 uuid_compare \- compare whether two UUIDs are the same
  /external/e2fsprogs/misc/
uuidgen.1.in 25 all UUIDs created on the local system,
26 and among UUIDs created on other systems in the past
uuidd.8.in 46 universally unique identifiers (UUIDs), especially time-based UUID's
  /external/bluetooth/bluez/src/
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...]
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);
  /external/bluetooth/bluez/test/
list-devices 43 elif (key == "UUIDs"):
65 elif (key == "UUIDs"):
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothSettings.java 303 ParcelUuid[] uuids = cachedDevice.getDevice().getUuids(); local
308 if (uuids != null)
309 if (BluetoothUuid.containsAnyUuid(uuids,
317 if (uuids != null) {
318 if (BluetoothUuid.containsAnyUuid(uuids,
321 if (BluetoothUuid.containsAnyUuid(uuids,
LocalBluetoothProfileManager.java 143 * @param uuids of the remote device
146 public static void updateProfiles(ParcelUuid[] uuids, List<Profile> profiles) {
149 if (uuids == null) {
153 if (BluetoothUuid.containsAnyUuid(uuids, HEADSET_PROFILE_UUIDS)) {
157 if (BluetoothUuid.containsAnyUuid(uuids, A2DP_PROFILE_UUIDS)) {
161 if (BluetoothUuid.containsAnyUuid(uuids, OPP_PROFILE_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]);
  /external/dbus/tools/
dbus-uuidgen.1 7 dbus-uuidgen \- Utility to generate UUIDs
18 UUIDs compatible with that spec. Many systems have a separate command
  /external/bluetooth/bluez/doc/
device-api.txt 38 be used to specify specific UUIDs. And empty string
137 array{string} UUIDs [readonly]
139 List of 128-bit UUIDs that represents the available
network-api.txt 76 Valid UUIDs are "gn", "panu" or "nap".
  /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...]
  /external/bluetooth/hcidump/parser/
sdp.h 28 /* Bluetooth assigned UUIDs for protocols */
51 /* Bluetooth assigned UUIDs for Service Classes */

Completed in 329 milliseconds

1 2 3