Lines Matching refs:attribs
135 struct OdevAttributes *attribs = in config_odev_allocate_attributes() local
137 attribs->fd = -1; in config_odev_allocate_attributes()
138 return attribs; in config_odev_allocate_attributes()
142 config_odev_free_attributes(struct OdevAttributes *attribs) in config_odev_free_attributes() argument
144 if (attribs->fd != -1) in config_odev_free_attributes()
145 systemd_logind_release_fd(attribs->major, attribs->minor, attribs->fd); in config_odev_free_attributes()
146 free(attribs->path); in config_odev_free_attributes()
147 free(attribs->syspath); in config_odev_free_attributes()
148 free(attribs->busid); in config_odev_free_attributes()
149 free(attribs->driver); in config_odev_free_attributes()
150 free(attribs); in config_odev_free_attributes()