Home
last modified time | relevance | path

Searched refs:dev_list (Results 1 – 5 of 5) sorted by relevance

/openbmc/u-boot/test/dm/
H A Dregulator.c301 struct udevice *dev_list[2], *dev; in dm_test_power_regulator_autoset_list() local
320 ut_assertok(regulator_list_autoset(platname_list, dev_list, false)); in dm_test_power_regulator_autoset_list()
324 ut_assert(dev_list[i]); in dm_test_power_regulator_autoset_list()
328 ut_asserteq_ptr(dev_list[i], dev); in dm_test_power_regulator_autoset_list()
331 ut_asserteq(regulator_get_value(dev_list[i]), in dm_test_power_regulator_autoset_list()
335 ut_asserteq(regulator_get_current(dev_list[i]), in dm_test_power_regulator_autoset_list()
339 ut_asserteq(regulator_get_enable(dev_list[i]), in dm_test_power_regulator_autoset_list()
/openbmc/qemu/include/hw/xen/
H A Dxen-hvm-common.h73 QLIST_HEAD(, XenPciDevice) dev_list;
/openbmc/qemu/hw/xen/
H A Dxen-hvm-common.c148 QLIST_INSERT_HEAD(&state->dev_list, xendev, entry); in xen_device_realize()
165 QLIST_FOREACH_SAFE(xendev, &state->dev_list, entry, next) { in xen_device_unrealize()
406 QLIST_FOREACH(xendev, &state->dev_list, entry) { in cpu_ioreq_config()
887 QLIST_INIT(&state->dev_list); in xen_do_ioreq_register()
/openbmc/u-boot/fs/yaffs2/
H A Dyaffsfs.c497 dev = list_entry(cfg, struct yaffs_dev, dev_list); in yaffsfs_FindDevice()
2747 if (dev == list_entry(cfg, struct yaffs_dev, dev_list)) in yaffs_add_device()
2754 if (!dev->dev_list.next) in yaffs_add_device()
2755 INIT_LIST_HEAD(&dev->dev_list); in yaffs_add_device()
2757 list_add(&dev->dev_list, &yaffsfs_deviceList); in yaffs_add_device()
2762 list_del_init(&dev->dev_list); in yaffs_remove_device()
2782 retval = list_entry(dev_iterator, struct yaffs_dev, dev_list); in yaffs_next_dev()
H A Dyaffs_guts.h623 struct list_head dev_list; member