• Home
  • Raw
  • Download

Lines Matching refs:uuids

114 	GSList		*uuids;  member
205 g_slist_foreach(device->uuids, (GFunc) g_free, NULL); in device_free()
206 g_slist_free(device->uuids); in device_free()
328 str = g_new0(char *, g_slist_length(device->uuids) + 1); in get_properties()
329 for (i = 0, l = device->uuids; l; l = l->next, i++) in get_properties()
490 device_probe_drivers(device, device->uuids); in device_unblock()
1149 GSList *l, *uuids = NULL; in device_match_pattern() local
1160 uuids = g_slist_append(uuids, profile_uuid); in device_match_pattern()
1163 return uuids; in device_match_pattern()
1171 GSList *uuids = NULL; in device_match_driver() local
1173 for (uuid = driver->uuids; *uuid; uuid++) { in device_match_driver()
1177 if (g_slist_find_custom(uuids, *uuid, in device_match_driver()
1185 uuids = g_slist_append(uuids, match->data); in device_match_driver()
1191 uuids = g_slist_concat(uuids, match); in device_match_driver()
1194 return uuids; in device_match_driver()
1235 GSList *l = g_slist_find_custom(device->uuids, list->data, in device_probe_drivers()
1240 device->uuids = g_slist_insert_sorted(device->uuids, in device_probe_drivers()
1246 static void device_remove_drivers(struct btd_device *device, GSList *uuids) in device_remove_drivers() argument
1268 for (uuid = driver->uuids; *uuid; uuid++) { in device_remove_drivers()
1269 if (!g_slist_find_custom(uuids, *uuid, in device_remove_drivers()
1283 for (list = uuids; list; list = list->next) { in device_remove_drivers()
1286 device->uuids = g_slist_remove(device->uuids, list->data); in device_remove_drivers()
1306 char **uuids; in services_changed() local
1310 uuids = g_new0(char *, g_slist_length(device->uuids) + 1); in services_changed()
1311 for (i = 0, l = device->uuids; l; l = l->next, i++) in services_changed()
1312 uuids[i] = l->data; in services_changed()
1315 "UUIDs", DBUS_TYPE_STRING, &uuids, i); in services_changed()
1317 g_free(uuids); in services_changed()
1399 l = g_slist_find_custom(device->uuids, profile_uuid, in update_services()
1424 if (!device->uuids) { in store_profiles()
1429 str = bt_list2string(device->uuids); in store_profiles()
1617 for (l = req->device->uuids; l; l = l->next) in init_browse()
1663 GSList *l, *uuids = NULL; in primary_cb() local
1677 uuids = g_slist_append(uuids, prim->uuid); in primary_cb()
1680 device_probe_drivers(device, uuids); in primary_cb()
1684 g_slist_free(uuids); in primary_cb()
2482 if (g_slist_find_custom(device->uuids, uuid, in btd_device_add_uuid()