Lines Matching refs:ret
1553 int ret = 0;
1568 ret = -ENXIO;
1573 ret = -EINVAL;
1579 ret = -EISDIR;
1585 ret = -EACCES;
1591 ret = -EINVAL;
1599 ret = -errno;
1605 ret = -errno;
1609 ret = -EIO;
1618 return ret;
1673 int ret;
1674 ret = udev_device_sysattr_list_read(udev_device);
1675 if (0 > ret)
2061 struct udev_device *ret;
2069 ret = udev_device_new_from_syspath(udev, syspath);
2070 if (!ret)
2073 r = udev_device_read_uevent_file(ret);
2075 udev_device_unref(ret);
2080 r = udev_device_set_action(ret, action);
2082 udev_device_unref(ret);
2087 return ret;