Lines Matching defs:device_parent
86 struct udev_device *device_parent;
109 device_parent = device;
111 device_parent = udev_device_get_parent(device_parent);
112 if (device_parent == NULL)
114 printf(" looking at parent device '%s':\n", udev_device_get_devpath(device_parent));
115 printf(" KERNELS==\"%s\"\n", udev_device_get_sysname(device_parent));
116 str = udev_device_get_subsystem(device_parent);
120 str = udev_device_get_driver(device_parent);
124 print_all_attributes(device_parent, "ATTRS");
125 } while (device_parent != NULL);