diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-26 15:36:10 +0200 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2012-09-26 16:04:30 +0200 |
commit | 884e32afc11107aa8e12ff282a90c10113adba49 (patch) | |
tree | 6e4468794b6ddaec4117f8e51ee9e3b0b636a087 | |
parent | d7d81d9d33f471bfaf45e70764b875600c41439e (diff) |
prepare 0.19.10telepathy-glib-0.19.10
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | telepathy-glib/abi.am | 1 | ||||
-rw-r--r-- | telepathy-glib/account-channel-request.c | 6 | ||||
-rw-r--r-- | telepathy-glib/account-channel-request.h | 4 | ||||
-rw-r--r-- | telepathy-glib/base-client.c | 6 | ||||
-rw-r--r-- | telepathy-glib/base-client.h | 6 | ||||
-rw-r--r-- | telepathy-glib/channel-request.c | 8 | ||||
-rw-r--r-- | telepathy-glib/channel-request.h | 4 | ||||
-rw-r--r-- | telepathy-glib/contact.c | 6 | ||||
-rw-r--r-- | telepathy-glib/contact.h | 2 | ||||
-rw-r--r-- | telepathy-glib/dbus-tube-channel.c | 4 | ||||
-rw-r--r-- | telepathy-glib/dbus-tube-channel.h | 2 | ||||
-rw-r--r-- | telepathy-glib/gnio-util.c | 4 | ||||
-rw-r--r-- | telepathy-glib/gnio-util.h | 4 | ||||
-rw-r--r-- | telepathy-glib/message.c | 4 | ||||
-rw-r--r-- | telepathy-glib/message.h | 4 | ||||
-rw-r--r-- | telepathy-glib/stream-tube-channel.c | 4 | ||||
-rw-r--r-- | telepathy-glib/stream-tube-channel.h | 2 | ||||
-rw-r--r-- | telepathy-glib/variant-util.c | 22 | ||||
-rw-r--r-- | telepathy-glib/versions/0.19.10.abi | 28 |
21 files changed, 82 insertions, 49 deletions
@@ -1,6 +1,10 @@ -telepathy-glib 0.19.10 (UNRELEASED) +telepathy-glib 0.19.10 (2012-09-26) =================================== +The “Why not 0.20.0?” release. + +This is the release candidate for the future 0.20.0 stable release. + Enhancements: • Add tp_vardict_get_uint32() etc., analogous to tp_asv_get_uint32() etc. diff --git a/configure.ac b/configure.ac index 524b63c06..4b1a9f4c8 100644 --- a/configure.ac +++ b/configure.ac @@ -11,8 +11,8 @@ AC_PREREQ([2.59]) m4_define([tp_glib_major_version], [0]) m4_define([tp_glib_minor_version], [19]) -m4_define([tp_glib_micro_version], [9]) -m4_define([tp_glib_nano_version], [1]) +m4_define([tp_glib_micro_version], [10]) +m4_define([tp_glib_nano_version], [0]) # If library source has changed since last release, increment revision # If interfaces have been added, removed or changed since last release, diff --git a/telepathy-glib/abi.am b/telepathy-glib/abi.am index 8419b3be1..a8471798d 100644 --- a/telepathy-glib/abi.am +++ b/telepathy-glib/abi.am @@ -94,6 +94,7 @@ ABI_LISTS = \ versions/0.19.7.abi \ versions/0.19.8.abi \ versions/0.19.9.abi \ + versions/0.19.10.abi \ $(NULL) # The quoting here is unnecessary but harmless, and has the useful side-effect diff --git a/telepathy-glib/account-channel-request.c b/telepathy-glib/account-channel-request.c index e240835a1..5269a39f6 100644 --- a/telepathy-glib/account-channel-request.c +++ b/telepathy-glib/account-channel-request.c @@ -411,7 +411,7 @@ tp_account_channel_request_class_init ( * #TpAccountChannelRequest:request-vardict must be set to a non-%NULL * value, and the other must remain unspecified. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ param_spec = g_param_spec_variant ("request-vardict", "Request", "A dictionary containing desirable properties for the channel", @@ -570,7 +570,7 @@ tp_account_channel_request_new ( * * Returns: a new #TpAccountChannelRequest object * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ TpAccountChannelRequest * tp_account_channel_request_new_vardict ( @@ -640,7 +640,7 @@ tp_account_channel_request_get_request ( * Returns: (transfer full): the value of * #TpAccountChannelRequest:request-vardict * - * Since: 0.11.UNRELEASED + * Since: 0.19.10 */ GVariant * tp_account_channel_request_dup_request ( diff --git a/telepathy-glib/account-channel-request.h b/telepathy-glib/account-channel-request.h index 416c93764..f05571417 100644 --- a/telepathy-glib/account-channel-request.h +++ b/telepathy-glib/account-channel-request.h @@ -66,7 +66,7 @@ TpAccountChannelRequest * tp_account_channel_request_new ( TpAccount *account, GHashTable *request, gint64 user_action_time) G_GNUC_WARN_UNUSED_RESULT; -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 TpAccountChannelRequest * tp_account_channel_request_new_vardict ( TpAccount *account, GVariant *request, @@ -77,7 +77,7 @@ TpAccount * tp_account_channel_request_get_account ( GHashTable * tp_account_channel_request_get_request ( TpAccountChannelRequest *self); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GVariant *tp_account_channel_request_dup_request ( TpAccountChannelRequest *self); diff --git a/telepathy-glib/base-client.c b/telepathy-glib/base-client.c index ef71b2bb8..bd33b3c97 100644 --- a/telepathy-glib/base-client.c +++ b/telepathy-glib/base-client.c @@ -433,7 +433,7 @@ tp_base_client_take_observer_filter (TpBaseClient *self, * ...)); * ]| * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ void tp_base_client_add_observer_filter_vardict (TpBaseClient *self, @@ -609,7 +609,7 @@ tp_base_client_take_approver_filter (TpBaseClient *self, * will be taken. See tp_base_client_add_observer_filter_vardict() for * more details. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ void tp_base_client_add_approver_filter_vardict (TpBaseClient *self, @@ -726,7 +726,7 @@ tp_base_client_take_handler_filter (TpBaseClient *self, * will be taken. See tp_base_client_add_observer_filter_vardict() for * more details. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ void tp_base_client_add_handler_filter_vardict (TpBaseClient *self, diff --git a/telepathy-glib/base-client.h b/telepathy-glib/base-client.h index a3cffffc1..5c2a718a9 100644 --- a/telepathy-glib/base-client.h +++ b/telepathy-glib/base-client.h @@ -111,7 +111,7 @@ void tp_base_client_implement_handle_channels (TpBaseClientClass *klass, void tp_base_client_add_observer_filter (TpBaseClient *self, GHashTable *filter); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 void tp_base_client_add_observer_filter_vardict (TpBaseClient *self, GVariant *filter); void tp_base_client_take_observer_filter (TpBaseClient *self, @@ -126,7 +126,7 @@ void tp_base_client_add_approver_filter (TpBaseClient *self, GHashTable *filter); void tp_base_client_take_approver_filter (TpBaseClient *self, GHashTable *filter); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 void tp_base_client_add_approver_filter_vardict (TpBaseClient *self, GVariant *filter); @@ -136,7 +136,7 @@ void tp_base_client_add_handler_filter (TpBaseClient *self, GHashTable *filter); void tp_base_client_take_handler_filter (TpBaseClient *self, GHashTable *filter); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 void tp_base_client_add_handler_filter_vardict (TpBaseClient *self, GVariant *filter); void tp_base_client_set_handler_bypass_approval (TpBaseClient *self, diff --git a/telepathy-glib/channel-request.c b/telepathy-glib/channel-request.c index a50892fee..c0b0c4b1b 100644 --- a/telepathy-glib/channel-request.c +++ b/telepathy-glib/channel-request.c @@ -431,7 +431,7 @@ tp_channel_request_class_init (TpChannelRequestClass *klass) * * Read-only except during construction. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ param_spec = g_param_spec_variant ("immutable-properties-vardict", "Immutable D-Bus properties", @@ -517,7 +517,7 @@ tp_channel_request_class_init (TpChannelRequestClass *klass) * * Read-only. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ param_spec = g_param_spec_variant ("hints-vardict", "Hints", "Hints", G_VARIANT_TYPE_VARDICT, NULL, @@ -723,7 +723,7 @@ tp_channel_request_get_immutable_properties (TpChannelRequest *self) * Returns: (transfer full): the value of * #TpChannelRequest:immutable-properties-vardict * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ GVariant * tp_channel_request_dup_immutable_properties (TpChannelRequest *self) @@ -857,7 +857,7 @@ tp_channel_request_get_hints (TpChannelRequest *self) * * Returns: (transfer full): the value of #TpChannelRequest:hints-vardict * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ GVariant * tp_channel_request_dup_hints (TpChannelRequest *self) diff --git a/telepathy-glib/channel-request.h b/telepathy-glib/channel-request.h index 61e2cd8eb..bbd617e55 100644 --- a/telepathy-glib/channel-request.h +++ b/telepathy-glib/channel-request.h @@ -88,7 +88,7 @@ void tp_channel_request_set_channel_factory (TpChannelRequest *self, const GHashTable * tp_channel_request_get_immutable_properties ( TpChannelRequest *self); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GVariant *tp_channel_request_dup_immutable_properties (TpChannelRequest *self); TpAccount * tp_channel_request_get_account (TpChannelRequest *self); @@ -99,7 +99,7 @@ const gchar * tp_channel_request_get_preferred_handler (TpChannelRequest *self); const GHashTable * tp_channel_request_get_hints (TpChannelRequest *self); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GVariant *tp_channel_request_dup_hints (TpChannelRequest *self); G_END_DECLS diff --git a/telepathy-glib/contact.c b/telepathy-glib/contact.c index cf5aed3a0..94b0952dd 100644 --- a/telepathy-glib/contact.c +++ b/telepathy-glib/contact.c @@ -97,7 +97,7 @@ struct _TpContact { * @TP_CONTACT_FEATURE_PRESENCE: #TpContact:presence-type, * #TpContact:presence-status and #TpContact:presence-message * @TP_CONTACT_FEATURE_LOCATION: #TpContact:location (available since 0.11.1) - * and #TpContact:location-vardict (since 0.UNRELEASED) + * and #TpContact:location-vardict (since 0.19.10) * @TP_CONTACT_FEATURE_CAPABILITIES: #TpContact:capabilities * (available since 0.11.3) * @TP_CONTACT_FEATURE_AVATAR_DATA: #TpContact:avatar-file and @@ -569,7 +569,7 @@ tp_contact_get_location (TpContact *self) * Returns: a variant of type %G_VARIANT_TYPE_VARDICT, the same as * the #TpContact:location-vardict property * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ GVariant * tp_contact_dup_location (TpContact *self) @@ -1263,7 +1263,7 @@ tp_contact_class_init (TpContactClass *klass) * This property contains the same information as #TpContact:location, * in a different format. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ param_spec = g_param_spec_variant ("location-vardict", "Location", diff --git a/telepathy-glib/contact.h b/telepathy-glib/contact.h index 1197b5e73..0a4a240e1 100644 --- a/telepathy-glib/contact.h +++ b/telepathy-glib/contact.h @@ -97,7 +97,7 @@ const gchar *tp_contact_get_presence_message (TpContact *self); /* TP_CONTACT_FEATURE_LOCATION */ GHashTable *tp_contact_get_location (TpContact *self); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GVariant *tp_contact_dup_location (TpContact *self); /* TP_CONTACT_FEATURE_CAPABILITIES */ diff --git a/telepathy-glib/dbus-tube-channel.c b/telepathy-glib/dbus-tube-channel.c index f2bb4fd23..b101adedd 100644 --- a/telepathy-glib/dbus-tube-channel.c +++ b/telepathy-glib/dbus-tube-channel.c @@ -454,7 +454,7 @@ tp_dbus_tube_channel_class_init (TpDBusTubeChannelClass *klass) * * Will be %NULL for outgoing tubes until the tube has been offered. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ param_spec = g_param_spec_variant ("parameters-vardict", "Parameters", "The parameters of the D-Bus tube", @@ -555,7 +555,7 @@ tp_dbus_tube_channel_get_parameters (TpDBusTubeChannel *self) * * Returns: (transfer full): a new reference to a #GVariant * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ GVariant * tp_dbus_tube_channel_dup_parameters_vardict (TpDBusTubeChannel *self) diff --git a/telepathy-glib/dbus-tube-channel.h b/telepathy-glib/dbus-tube-channel.h index 1171afd76..b34c7b808 100644 --- a/telepathy-glib/dbus-tube-channel.h +++ b/telepathy-glib/dbus-tube-channel.h @@ -69,7 +69,7 @@ const gchar * tp_dbus_tube_channel_get_service_name (TpDBusTubeChannel *self); _TP_AVAILABLE_IN_0_18 GHashTable * tp_dbus_tube_channel_get_parameters (TpDBusTubeChannel *self); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GVariant * tp_dbus_tube_channel_dup_parameters_vardict (TpDBusTubeChannel *self); /* Outgoing tube methods */ diff --git a/telepathy-glib/gnio-util.c b/telepathy-glib/gnio-util.c index 8b8c4616b..1ce6cd588 100644 --- a/telepathy-glib/gnio-util.c +++ b/telepathy-glib/gnio-util.c @@ -297,7 +297,7 @@ tp_address_variant_from_g_socket_address (GSocketAddress *address, * Returns: a newly allocated #GSocketAddress for the given variant, or %NULL * on error * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ GSocketAddress * tp_g_socket_address_from_g_variant (TpSocketAddressType type, @@ -326,7 +326,7 @@ tp_g_socket_address_from_g_variant (TpSocketAddressType type, * * Returns: (transfer none): a new variant with a floating reference, or %NULL * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ GVariant * tp_address_g_variant_from_g_socket_address (GSocketAddress *address, diff --git a/telepathy-glib/gnio-util.h b/telepathy-glib/gnio-util.h index 0bf58d3e0..072f6fa2d 100644 --- a/telepathy-glib/gnio-util.h +++ b/telepathy-glib/gnio-util.h @@ -41,11 +41,11 @@ GValue *tp_address_variant_from_g_socket_address (GSocketAddress *address, TpSocketAddressType *type, GError **error) G_GNUC_WARN_UNUSED_RESULT; -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GSocketAddress *tp_g_socket_address_from_g_variant (TpSocketAddressType type, GVariant *variant, GError **error) G_GNUC_WARN_UNUSED_RESULT; -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GVariant *tp_address_g_variant_from_g_socket_address (GSocketAddress *address, TpSocketAddressType *type, GError **error) G_GNUC_WARN_UNUSED_RESULT; diff --git a/telepathy-glib/message.c b/telepathy-glib/message.c index 4b410701e..2c27b445f 100644 --- a/telepathy-glib/message.c +++ b/telepathy-glib/message.c @@ -211,7 +211,7 @@ tp_message_peek (TpMessage *self, * the current contents of the given part, or %NULL if the part number is * out of range * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ GVariant * tp_message_dup_part (TpMessage *self, @@ -653,7 +653,7 @@ tp_message_set (TpMessage *self, * If @value is a floating reference (see g_variant_ref_sink()), then this * function will take ownership of it. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ void tp_message_set_variant (TpMessage *self, diff --git a/telepathy-glib/message.h b/telepathy-glib/message.h index 50df7f2d6..cfa844ec3 100644 --- a/telepathy-glib/message.h +++ b/telepathy-glib/message.h @@ -46,7 +46,7 @@ GType tp_message_get_type (void); void tp_message_destroy (TpMessage *self); guint tp_message_count_parts (TpMessage *self); const GHashTable *tp_message_peek (TpMessage *self, guint part); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GVariant *tp_message_dup_part (TpMessage *self, guint part); guint tp_message_append_part (TpMessage *self); void tp_message_delete_part (TpMessage *self, guint part); @@ -74,7 +74,7 @@ void tp_message_set_bytes (TpMessage *self, guint part, const gchar *key, guint len, gconstpointer bytes); void tp_message_set (TpMessage *self, guint part, const gchar *key, const GValue *source); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 void tp_message_set_variant (TpMessage *self, guint part, const gchar *key, GVariant *value); diff --git a/telepathy-glib/stream-tube-channel.c b/telepathy-glib/stream-tube-channel.c index 013997813..607abad54 100644 --- a/telepathy-glib/stream-tube-channel.c +++ b/telepathy-glib/stream-tube-channel.c @@ -458,7 +458,7 @@ tp_stream_tube_channel_class_init (TpStreamTubeChannelClass *klass) * * Will be %NULL for outgoing tubes until the tube has been offered. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ param_spec = g_param_spec_variant ("parameters-vardict", "Parameters", "The parameters of the stream tube", @@ -1599,7 +1599,7 @@ tp_stream_tube_channel_get_parameters (TpStreamTubeChannel *self) * * Returns: (transfer full): a new reference to a #GVariant * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ GVariant * tp_stream_tube_channel_dup_parameters_vardict (TpStreamTubeChannel *self) diff --git a/telepathy-glib/stream-tube-channel.h b/telepathy-glib/stream-tube-channel.h index 1c761e298..5c93cd322 100644 --- a/telepathy-glib/stream-tube-channel.h +++ b/telepathy-glib/stream-tube-channel.h @@ -69,7 +69,7 @@ const gchar * tp_stream_tube_channel_get_service (TpStreamTubeChannel *self); GHashTable * tp_stream_tube_channel_get_parameters (TpStreamTubeChannel *self); -_TP_AVAILABLE_IN_UNRELEASED +_TP_AVAILABLE_IN_0_20 GVariant *tp_stream_tube_channel_dup_parameters_vardict ( TpStreamTubeChannel *self); diff --git a/telepathy-glib/variant-util.c b/telepathy-glib/variant-util.c index c9ae69992..2e7230458 100644 --- a/telepathy-glib/variant-util.c +++ b/telepathy-glib/variant-util.c @@ -35,7 +35,7 @@ * These functions provide convenient access to the values in such * a mapping. * - * Since: 0.UNRELEASED + * Since: 0.19.10 */ #include "config.h" @@ -114,7 +114,7 @@ _tp_asv_from_vardict (GVariant *variant) * Classifies @type according to its top-level type. * * Returns: the #GVariantClass of @type - * Since: 0.UNRELEASED + * Since: 0.19.10 **/ GVariantClass tp_variant_type_classify (const GVariantType *type) @@ -330,7 +330,7 @@ _tp_variant_convert_uint64 (GVariant *variant, * is not possible, %NULL is returned. * * Returns: (transfer full): a new #GVariant owned by the caller. - * Since: 0.UNRELEASED + * Since: 0.19.10 **/ GVariant * tp_variant_convert (GVariant *variant, @@ -398,7 +398,7 @@ tp_variant_convert (GVariant *variant, * kept. Copy it with g_strdup() if you need to keep it for longer. * * Returns: (transfer none) (allow-none): the string value of @key, or %NULL - * Since: 0.UNRELEASED + * Since: 0.19.10 */ const gchar * tp_vardict_get_string (GVariant *variant, @@ -430,7 +430,7 @@ tp_vardict_get_string (GVariant *variant, * * Returns: (transfer none) (allow-none): the object path value of @key, or * %NULL - * Since: 0.UNRELEASED + * Since: 0.19.10 */ const gchar * tp_vardict_get_object_path (GVariant *variant, @@ -461,7 +461,7 @@ tp_vardict_get_object_path (GVariant *variant, * Otherwise return %FALSE, and set *@valid to %FALSE if @valid is not %NULL. * * Returns: a boolean value for @key - * Since: 0.UNRELEASED + * Since: 0.19.10 */ gboolean tp_vardict_get_boolean (GVariant *variant, @@ -529,7 +529,7 @@ tp_vardict_get_boolean (GVariant *variant, * Otherwise, return 0.0, and if @valid is not %NULL, set *@valid to %FALSE. * * Returns: the double precision floating-point value of @key, or 0.0 - * Since: 0.UNRELEASED + * Since: 0.19.10 */ IMPLEMENT (double) @@ -548,7 +548,7 @@ IMPLEMENT (double) * Otherwise, return 0, and if @valid is not %NULL, set *@valid to %FALSE. * * Returns: the 32-bit signed integer value of @key, or 0 - * Since: 0.UNRELEASED + * Since: 0.19.10 */ IMPLEMENT (int32) @@ -567,7 +567,7 @@ IMPLEMENT (int32) * Otherwise, return 0, and if @valid is not %NULL, set *@valid to %FALSE. * * Returns: the 64-bit signed integer value of @key, or 0 - * Since: 0.UNRELEASED + * Since: 0.19.10 */ IMPLEMENT (int64) @@ -586,7 +586,7 @@ IMPLEMENT (int64) * Otherwise, return 0, and if @valid is not %NULL, set *@valid to %FALSE. * * Returns: the 32-bit unsigned integer value of @key, or 0 - * Since: 0.UNRELEASED + * Since: 0.19.10 */ IMPLEMENT (uint32) @@ -604,7 +604,7 @@ IMPLEMENT (uint32) * Otherwise, return 0, and if @valid is not %NULL, set *@valid to %FALSE. * * Returns: the 64-bit unsigned integer value of @key, or 0 - * Since: 0.UNRELEASED + * Since: 0.19.10 */ IMPLEMENT (uint64) diff --git a/telepathy-glib/versions/0.19.10.abi b/telepathy-glib/versions/0.19.10.abi new file mode 100644 index 000000000..18bab72a4 --- /dev/null +++ b/telepathy-glib/versions/0.19.10.abi @@ -0,0 +1,28 @@ +Version: TELEPATHY_GLIB_0.19.10 +Extends: TELEPATHY_GLIB_0.19.9 +Release: 0.19.10 + +tp_account_channel_request_dup_request +tp_account_channel_request_new_vardict +tp_address_g_variant_from_g_socket_address +tp_base_client_add_approver_filter_vardict +tp_base_client_add_handler_filter_vardict +tp_base_client_add_observer_filter_vardict +tp_channel_request_dup_hints +tp_channel_request_dup_immutable_properties +tp_contact_dup_location +tp_dbus_tube_channel_dup_parameters_vardict +tp_g_socket_address_from_g_variant +tp_message_dup_part +tp_message_set_variant +tp_stream_tube_channel_dup_parameters_vardict +tp_vardict_get_boolean +tp_vardict_get_double +tp_vardict_get_int32 +tp_vardict_get_int64 +tp_vardict_get_object_path +tp_vardict_get_string +tp_vardict_get_uint32 +tp_vardict_get_uint64 +tp_variant_convert +tp_variant_type_classify |