lib: private functions: do not repeat `private` word
[babeltrace.git] / lib / trace-ir / packet-context-field.c
index b3827435d7165d43038be29ab8477a302f233329..b71c6de47df0d02dd670ee2051e5e347c9ca612b 100644 (file)
 
 #include <babeltrace/assert-pre-internal.h>
 #include <babeltrace/trace-ir/stream-class-internal.h>
-#include <babeltrace/trace-ir/packet-context-field.h>
+#include <babeltrace/trace-ir/private-packet-context-field.h>
 #include <babeltrace/trace-ir/fields-internal.h>
 #include <babeltrace/trace-ir/field-wrapper-internal.h>
 #include <glib.h>
 
-struct bt_field *bt_packet_context_field_borrow_field(
-               struct bt_packet_context_field *context_field)
+struct bt_private_field *bt_private_packet_context_field_borrow_field(
+               struct bt_private_packet_context_field *context_field)
 {
        struct bt_field_wrapper *field_wrapper = (void *) context_field;
 
        BT_ASSERT_PRE_NON_NULL(field_wrapper, "Packet context field");
-       return field_wrapper->field;
+       return (void *) field_wrapper->field;
 }
 
-void bt_packet_context_field_release(struct bt_packet_context_field *context_field)
+void bt_private_packet_context_field_release(
+               struct bt_private_packet_context_field *context_field)
 {
        struct bt_field_wrapper *field_wrapper = (void *) context_field;
 
@@ -55,20 +56,21 @@ void bt_packet_context_field_release(struct bt_packet_context_field *context_fie
        bt_field_wrapper_destroy(field_wrapper);
 }
 
-struct bt_packet_context_field *bt_packet_context_field_create(
-               struct bt_stream_class *stream_class)
+struct bt_private_packet_context_field *bt_private_packet_context_field_create(
+               struct bt_private_stream_class *priv_stream_class)
 {
+       struct bt_stream_class *stream_class = (void *) priv_stream_class;
        struct bt_field_wrapper *field_wrapper;
 
        BT_ASSERT_PRE_NON_NULL(stream_class, "Stream class");
        BT_ASSERT_PRE(stream_class->frozen,
                "Stream class is not part of a trace: %!+S", stream_class);
-       BT_ASSERT_PRE(stream_class->packet_context_ft,
-               "Stream class has no packet context field type: %!+S",
+       BT_ASSERT_PRE(stream_class->packet_context_fc,
+               "Stream class has no packet context field classe: %!+S",
                stream_class);
        field_wrapper = bt_field_wrapper_create(
                &stream_class->packet_context_field_pool,
-               (void *) stream_class->packet_context_ft);
+               (void *) stream_class->packet_context_fc);
        if (!field_wrapper) {
                BT_LIB_LOGE("Cannot allocate one packet context field from stream class: "
                        "%![sc-]+S", stream_class);
This page took 0.026955 seconds and 4 git commands to generate.