Lines Matching defs:action
73 char *action;
467 static int udev_device_set_action(struct udev_device *udev_device, const char *action)
469 free(udev_device->action);
470 udev_device->action = strdup(action);
471 if (udev_device->action == NULL)
473 udev_device_add_property_internal(udev_device, "ACTION", udev_device->action);
1225 free(udev_device->action);
1407 * sys do not have an action string. Usual actions are: add, remove, change, online,
1410 * Returns: the kernel action value, or #NULL if there is no action value available.
1416 return udev_device->action;
2060 struct udev_device *udev_device_new_from_synthetic_event(struct udev *udev, const char *syspath, const char *action) {
2064 if (!action) {
2080 r = udev_device_set_action(ret, action);