diff options
Diffstat (limited to 'libmm-glib/mm-bearer-stats.c')
-rw-r--r-- | libmm-glib/mm-bearer-stats.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/libmm-glib/mm-bearer-stats.c b/libmm-glib/mm-bearer-stats.c index 0301ff70..df499ca5 100644 --- a/libmm-glib/mm-bearer-stats.c +++ b/libmm-glib/mm-bearer-stats.c @@ -64,6 +64,9 @@ mm_bearer_stats_get_duration (MMBearerStats *self) return self->priv->duration; } +/** + * mm_bearer_stats_set_duration: (skip) + */ void mm_bearer_stats_set_duration (MMBearerStats *self, guint duration) @@ -93,6 +96,9 @@ mm_bearer_stats_get_rx_bytes (MMBearerStats *self) return self->priv->rx_bytes; } +/** + * mm_bearer_stats_set_rx_bytes: (skip) + */ void mm_bearer_stats_set_rx_bytes (MMBearerStats *self, guint64 bytes) @@ -122,6 +128,9 @@ mm_bearer_stats_get_tx_bytes (MMBearerStats *self) return self->priv->tx_bytes; } +/** + * mm_bearer_stats_set_tx_bytes: (skip) + */ void mm_bearer_stats_set_tx_bytes (MMBearerStats *self, guint64 bytes) @@ -133,6 +142,9 @@ mm_bearer_stats_set_tx_bytes (MMBearerStats *self, /*****************************************************************************/ +/** + * mm_bearer_stats_get_dictionary: (skip) + */ GVariant * mm_bearer_stats_get_dictionary (MMBearerStats *self) { @@ -160,6 +172,9 @@ mm_bearer_stats_get_dictionary (MMBearerStats *self) /*****************************************************************************/ +/** + * mm_bearer_stats_new_from_dictionary: (skip) + */ MMBearerStats * mm_bearer_stats_new_from_dictionary (GVariant *dictionary, GError **error) @@ -207,6 +222,9 @@ mm_bearer_stats_new_from_dictionary (GVariant *dictionary, /*****************************************************************************/ +/** + * mm_bearer_stats_new: (skip) + */ MMBearerStats * mm_bearer_stats_new (void) { |