Standardize *get_*() functions
[babeltrace.git] / include / babeltrace / graph / component-filter.h
index 557432d87c5e0451d05dbab0b51d76d221553950..43da9db00e9afd2bb49283f05db3425e2c87d420 100644 (file)
@@ -39,19 +39,19 @@ struct bt_component;
 
 extern int64_t bt_component_filter_get_input_port_count(
                struct bt_component *component);
-extern struct bt_port *bt_component_filter_get_input_port(
+extern struct bt_port *bt_component_filter_get_input_port_by_name(
                struct bt_component *component, const char *name);
-extern struct bt_port *bt_component_filter_get_input_port_at_index(
-               struct bt_component *component, int index);
+extern struct bt_port *bt_component_filter_get_input_port_by_index(
+               struct bt_component *component, uint64_t index);
 extern struct bt_port *bt_component_filter_get_default_input_port(
                struct bt_component *component);
 
 extern int64_t bt_component_filter_get_output_port_count(
                struct bt_component *component);
-extern struct bt_port *bt_component_filter_get_output_port(
+extern struct bt_port *bt_component_filter_get_output_port_by_name(
                struct bt_component *component, const char *name);
-extern struct bt_port *bt_component_filter_get_output_port_at_index(
-               struct bt_component *component, int index);
+extern struct bt_port *bt_component_filter_get_output_port_by_index(
+               struct bt_component *component, uint64_t index);
 extern struct bt_port *bt_component_filter_get_default_output_port(
                struct bt_component *component);
 
This page took 0.023919 seconds and 4 git commands to generate.