Lines Matching refs:device
30 # warning per device initialization checks.
59 struct udev_device *device;
62 device = udev_device_new_from_subsystem_sysname(udev, "net", ifname);
63 if (device) {
65 r = udev_device_get_is_initialized(device);
69 udev_device_unref(device);
78 struct udev_device *device;
81 device = udev_monitor_receive_device(monitor);
82 if (device == NULL) {
83 syslog(LOG_ERR, "libudev: received NULL device");
87 subsystem = udev_device_get_subsystem(device);
88 ifname = udev_device_get_sysname(device);
89 action = udev_device_get_action(device);
100 udev_device_unref(device);