lib: rename bt_plugin_create_all_*() -> bt_plugin_find_all_*()
[babeltrace.git] / lib / graph / notification / discarded-events.c
index 247946789f42cc22f21bab445c0d1d5da414dee7..e1dcbfa528a375442823dccc3f444ee1dad3d2fd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2017 Philippe Proulx <pproulx@efficios.com>
+ * Copyright 2017-2018 Philippe Proulx <pproulx@efficios.com>
  *
  * Permission is hereby granted, free of charge, to any person obtaining a copy
  * of this software and associated documentation files (the "Software"), to deal
 #include <stdint.h>
 
 struct bt_clock_value *
-bt_notification_discarded_events_get_begin_clock_value(
+bt_notification_discarded_events_borrow_begin_clock_value(
                struct bt_notification *notification)
 {
-       return bt_notification_discarded_elements_get_begin_clock_value(
+       return bt_notification_discarded_elements_borrow_begin_clock_value(
                BT_NOTIFICATION_TYPE_DISCARDED_EVENTS, notification);
 }
 
 struct bt_clock_value *
-bt_notification_discarded_events_get_end_clock_value(
+bt_notification_discarded_events_borrow_end_clock_value(
                struct bt_notification *notification)
 {
-       return bt_notification_discarded_elements_get_end_clock_value(
+       return bt_notification_discarded_elements_borrow_end_clock_value(
                BT_NOTIFICATION_TYPE_DISCARDED_EVENTS, notification);
 }
 
@@ -48,9 +48,9 @@ int64_t bt_notification_discarded_events_get_count(
                BT_NOTIFICATION_TYPE_DISCARDED_EVENTS, notification);
 }
 
-struct bt_stream *bt_notification_discarded_events_get_stream(
+struct bt_stream *bt_notification_discarded_events_borrow_stream(
                struct bt_notification *notification)
 {
-       return bt_notification_discarded_elements_get_stream(
+       return bt_notification_discarded_elements_borrow_stream(
                BT_NOTIFICATION_TYPE_DISCARDED_EVENTS, notification);
 }
This page took 0.029991 seconds and 4 git commands to generate.