Lines Matching refs:item
34 struct sbus_interface_list *item;
36 DLIST_FOR_EACH(item, list) {
37 if (strcmp(item->interface->vtable->meta->name, iface) == 0) {
38 return item->interface;
53 struct sbus_interface_list *item;
66 DLIST_FOR_EACH(item, list) {
68 item->interface->vtable->meta->name) != NULL) {
79 new_item->interface = item->interface;
482 sbus_opath_hash_delete_cb(hash_entry_t *item,
490 path = sbus_opath_get_base_path(NULL, item->key.str);
512 struct sbus_interface_list *item = NULL;
528 /* create new list item */
530 item = talloc_zero(tmp_ctx, struct sbus_interface_list);
531 if (item == NULL) {
535 item->interface = iface;
562 DLIST_ADD_END(list, item, struct sbus_interface_list *);
573 list = item;
589 talloc_steal(item, iface);
590 talloc_steal(table, item);