event-rule: userspace probe: rename get/set_name to get/set_event_name
[lttng-tools.git] / src / common / event-rule / userspace-probe.c
index 66db5a6e404dbc4bce90d2e2dbd4cb13394e4985..44a7a8043087a2dfdd6f0a4cef93b4e6d093d235 100644 (file)
@@ -300,7 +300,7 @@ ssize_t lttng_event_rule_userspace_probe_create_from_payload(
        uprobe = container_of(rule, struct lttng_event_rule_userspace_probe, parent);
        uprobe->location = location;
 
-       status = lttng_event_rule_userspace_probe_set_name(rule, name);
+       status = lttng_event_rule_userspace_probe_set_event_name(rule, name);
        if (status != LTTNG_EVENT_RULE_STATUS_OK) {
                ret = -1;
                goto end;
@@ -384,7 +384,7 @@ lttng_event_rule_userspace_probe_get_location_mutable(
        return uprobe->location;
 }
 
-enum lttng_event_rule_status lttng_event_rule_userspace_probe_set_name(
+enum lttng_event_rule_status lttng_event_rule_userspace_probe_set_event_name(
                struct lttng_event_rule *rule, const char *name)
 {
        char *name_copy = NULL;
@@ -414,7 +414,7 @@ end:
        return status;
 }
 
-enum lttng_event_rule_status lttng_event_rule_userspace_probe_get_name(
+enum lttng_event_rule_status lttng_event_rule_userspace_probe_get_event_name(
                const struct lttng_event_rule *rule, const char **name)
 {
        struct lttng_event_rule_userspace_probe *uprobe;
This page took 0.024475 seconds and 4 git commands to generate.