Standardize *get_*() functions
[babeltrace.git] / lib / graph / sink.c
index 916979adf3a9ba8670585260d7f5c32f071bb039..1bd092835a1687e59b82ae702b7baafb3b4ffdd3 100644 (file)
@@ -106,7 +106,7 @@ int64_t bt_component_sink_get_input_port_count(struct bt_component *component)
 
        if (!component ||
                        component->class->type != BT_COMPONENT_CLASS_TYPE_SINK) {
-               ret = -1;
+               ret = (int64_t) -1;
                goto end;
        }
 
@@ -115,7 +115,7 @@ end:
        return ret;
 }
 
-struct bt_port *bt_component_sink_get_input_port(
+struct bt_port *bt_component_sink_get_input_port_by_name(
                struct bt_component *component, const char *name)
 {
        struct bt_port *port = NULL;
@@ -125,13 +125,13 @@ struct bt_port *bt_component_sink_get_input_port(
                goto end;
        }
 
-       port = bt_component_get_input_port(component, name);
+       port = bt_component_get_input_port_by_name(component, name);
 end:
        return port;
 }
 
-struct bt_port *bt_component_sink_get_input_port_at_index(
-               struct bt_component *component, int index)
+struct bt_port *bt_component_sink_get_input_port_by_index(
+               struct bt_component *component, uint64_t index)
 {
        struct bt_port *port = NULL;
 
@@ -140,7 +140,7 @@ struct bt_port *bt_component_sink_get_input_port_at_index(
                goto end;
        }
 
-       port = bt_component_get_input_port_at_index(component, index);
+       port = bt_component_get_input_port_by_index(component, index);
 end:
        return port;
 }
@@ -148,16 +148,16 @@ end:
 struct bt_port *bt_component_sink_get_default_input_port(
                struct bt_component *component)
 {
-       return bt_component_sink_get_input_port(component,
+       return bt_component_sink_get_input_port_by_name(component,
                        DEFAULT_INPUT_PORT_NAME);
 }
 
 struct bt_private_port *
-bt_private_component_sink_get_input_private_port_at_index(
-               struct bt_private_component *private_component, int index)
+bt_private_component_sink_get_input_private_port_by_index(
+               struct bt_private_component *private_component, uint64_t index)
 {
        return bt_private_port_from_port(
-               bt_component_sink_get_input_port_at_index(
+               bt_component_sink_get_input_port_by_index(
                        bt_component_from_private(private_component), index));
 }
 
This page took 0.023931 seconds and 4 git commands to generate.