namespace the definition functions
[babeltrace.git] / types / struct.c
index 76b82d2c8c9a9af569b5ee38582e277721ae0ee5..5da9033e7a419ee1116bc7bfcf809d421791ff7e 100644 (file)
@@ -128,10 +128,10 @@ struct definition *
         */
        _struct->p.index = root_name ? INT_MAX : index;
        _struct->p.name = field_name;
-       _struct->p.path = new_definition_path(parent_scope, field_name, root_name);
-       _struct->p.scope = new_definition_scope(parent_scope, field_name, root_name);
+       _struct->p.path = bt_new_definition_path(parent_scope, field_name, root_name);
+       _struct->p.scope = bt_new_definition_scope(parent_scope, field_name, root_name);
 
-       ret = register_field_definition(field_name, &_struct->p,
+       ret = bt_register_field_definition(field_name, &_struct->p,
                                        parent_scope);
        assert(!ret || ret == -EPERM);
 
@@ -157,7 +157,7 @@ error:
                struct definition *field = g_ptr_array_index(_struct->fields, i);
                bt_definition_unref(field);
        }
-       free_definition_scope(_struct->p.scope);
+       bt_free_definition_scope(_struct->p.scope);
        bt_declaration_unref(&struct_declaration->p);
        g_free(_struct);
        return NULL;
@@ -175,7 +175,7 @@ void _struct_definition_free(struct definition *definition)
                struct definition *field = g_ptr_array_index(_struct->fields, i);
                bt_definition_unref(field);
        }
-       free_definition_scope(_struct->p.scope);
+       bt_free_definition_scope(_struct->p.scope);
        bt_declaration_unref(_struct->p.declaration);
        g_ptr_array_free(_struct->fields, TRUE);
        g_free(_struct);
This page took 0.02456 seconds and 4 git commands to generate.