Home
last modified time | relevance | path

Searched refs:gstrings (Results 1 – 4 of 4) sorted by relevance

/linux-4.1.27/net/core/
Dethtool.c1263 struct ethtool_gstrings gstrings; in ethtool_get_strings() local
1267 if (copy_from_user(&gstrings, useraddr, sizeof(gstrings))) in ethtool_get_strings()
1270 ret = __ethtool_get_sset_count(dev, gstrings.string_set); in ethtool_get_strings()
1274 gstrings.len = ret; in ethtool_get_strings()
1276 data = kcalloc(gstrings.len, ETH_GSTRING_LEN, GFP_USER); in ethtool_get_strings()
1280 __ethtool_get_strings(dev, gstrings.string_set, data); in ethtool_get_strings()
1283 if (copy_to_user(useraddr, &gstrings, sizeof(gstrings))) in ethtool_get_strings()
1285 useraddr += sizeof(gstrings); in ethtool_get_strings()
1286 if (copy_to_user(useraddr, data, gstrings.len * ETH_GSTRING_LEN)) in ethtool_get_strings()
/linux-4.1.27/drivers/usb/gadget/
Dconfigfs.c53 struct usb_gadget_strings *gstrings[MAX_USB_STRING_LANGS + 1]; member
75 struct usb_gadget_strings *gstrings[MAX_USB_STRING_LANGS + 1]; member
543 INIT_LIST_HEAD(&cdev->gstrings); in composite_init_dev()
1352 gi->gstrings[i] = &gs->stringtab_dev; in configfs_composite_bind()
1360 gi->gstrings[i] = NULL; in configfs_composite_bind()
1361 s = usb_gstrings_attach(&gi->cdev, gi->gstrings, in configfs_composite_bind()
1390 cfg->gstrings[i] = &cn->stringtab_dev; in configfs_composite_bind()
1395 cfg->gstrings[i] = NULL; in configfs_composite_bind()
1396 s = usb_gstrings_attach(&gi->cdev, cfg->gstrings, 1); in configfs_composite_bind()
Dcomposite.c980 list_for_each_entry(uc, &cdev->gstrings, list) { in get_string()
1009 list_for_each_entry(uc, &cdev->gstrings, list) { in get_string()
1208 list_add_tail(&uc->list, &cdev->gstrings); in usb_gstrings_attach()
2008 list_for_each_entry_safe(uc, tmp, &cdev->gstrings, list) { in composite_dev_cleanup()
2045 INIT_LIST_HEAD(&cdev->gstrings); in composite_bind()
/linux-4.1.27/include/linux/usb/
Dcomposite.h479 struct list_head gstrings; member