Hide new bt_ctf_event_* symbols
[babeltrace.git] / formats / ctf / ir / event.c
index 3ea59eaac7a9281b250a1b8302a0ad101023d370..f16a360beb9a3c06b7546a5676d998cc405b8817 100644 (file)
@@ -39,6 +39,7 @@
 #include <babeltrace/ctf-ir/trace-internal.h>
 #include <babeltrace/ctf-ir/validation-internal.h>
 #include <babeltrace/ctf-ir/packet-internal.h>
+#include <babeltrace/ctf-ir/clock-internal.h>
 #include <babeltrace/ctf-ir/utils.h>
 #include <babeltrace/ref.h>
 #include <babeltrace/ctf-ir/attributes-internal.h>
@@ -243,6 +244,7 @@ error:
        return event;
 }
 
+BT_HIDDEN
 struct bt_ctf_event_class *bt_ctf_event_get_class(struct bt_ctf_event *event)
 {
        struct bt_ctf_event_class *event_class = NULL;
@@ -257,6 +259,7 @@ end:
        return event_class;
 }
 
+BT_HIDDEN
 struct bt_ctf_stream *bt_ctf_event_get_stream(struct bt_ctf_event *event)
 {
        struct bt_ctf_stream *stream = NULL;
@@ -282,6 +285,7 @@ end:
        return stream;
 }
 
+BT_HIDDEN
 struct bt_ctf_clock *bt_ctf_event_get_clock(struct bt_ctf_event *event)
 {
        struct bt_ctf_clock *clock = NULL;
@@ -349,6 +353,7 @@ end:
        return ret;
 }
 
+BT_HIDDEN
 struct bt_ctf_field *bt_ctf_event_get_payload_field(struct bt_ctf_event *event)
 {
        struct bt_ctf_field *payload = NULL;
@@ -363,6 +368,7 @@ end:
        return payload;
 }
 
+BT_HIDDEN
 int bt_ctf_event_set_payload_field(struct bt_ctf_event *event,
                struct bt_ctf_field *payload)
 {
@@ -415,6 +421,7 @@ end:
        return field;
 }
 
+BT_HIDDEN
 struct bt_ctf_field *bt_ctf_event_get_payload_by_index(
                struct bt_ctf_event *event, int index)
 {
@@ -430,6 +437,7 @@ end:
        return field;
 }
 
+BT_HIDDEN
 struct bt_ctf_field *bt_ctf_event_get_header(
                struct bt_ctf_event *event)
 {
@@ -445,6 +453,7 @@ end:
        return header;
 }
 
+BT_HIDDEN
 int bt_ctf_event_set_header(struct bt_ctf_event *event,
                struct bt_ctf_field *header)
 {
@@ -479,6 +488,7 @@ end:
        return ret;
 }
 
+BT_HIDDEN
 struct bt_ctf_field *bt_ctf_event_get_event_context(
                struct bt_ctf_event *event)
 {
@@ -494,6 +504,7 @@ end:
        return context;
 }
 
+BT_HIDDEN
 int bt_ctf_event_set_event_context(struct bt_ctf_event *event,
                struct bt_ctf_field *context)
 {
@@ -520,6 +531,7 @@ end:
        return ret;
 }
 
+BT_HIDDEN
 struct bt_ctf_field *bt_ctf_event_get_stream_event_context(
                struct bt_ctf_event *event)
 {
@@ -534,6 +546,7 @@ end:
        return bt_get(stream_event_context);
 }
 
+BT_HIDDEN
 int bt_ctf_event_set_stream_event_context(struct bt_ctf_event *event,
                struct bt_ctf_field *stream_event_context)
 {
@@ -762,6 +775,7 @@ end:
        return ret;
 }
 
+BT_HIDDEN
 int bt_ctf_event_set_packet(struct bt_ctf_event *event,
                struct bt_ctf_packet *packet)
 {
@@ -857,6 +871,7 @@ int bt_ctf_event_register_stream_clock_values(struct bt_ctf_event *event)
        return ret;
 }
 
+BT_HIDDEN
 uint64_t bt_ctf_event_get_clock_value(struct bt_ctf_event *event,
                struct bt_ctf_clock *clock)
 {
This page took 0.024024 seconds and 4 git commands to generate.