• Home
  • Raw
  • Download

Lines Matching refs:connections

51   GSList                     *connections;   /* List of ConnectionData */  member
105 while (interface->priv->connections != NULL) in G_DEFINE_ABSTRACT_TYPE_WITH_CODE()
107 ConnectionData *data = interface->priv->connections->data; in G_DEFINE_ABSTRACT_TYPE_WITH_CODE()
720 interface_->priv->connections = g_slist_append (interface_->priv->connections, data); in add_connection_locked()
735 for (l = interface_->priv->connections; l != NULL; l = l->next) in remove_connection_locked()
742 interface_->priv->connections = g_slist_delete_link (interface_->priv->connections, l); in remove_connection_locked()
785 if (interface_->priv->connections != NULL) in g_dbus_interface_skeleton_get_connection()
787 data = interface_->priv->connections->data; in g_dbus_interface_skeleton_get_connection()
813 GList *connections; in g_dbus_interface_skeleton_get_connections() local
820 connections = NULL; in g_dbus_interface_skeleton_get_connections()
822 for (l = interface_->priv->connections; l != NULL; l = l->next) in g_dbus_interface_skeleton_get_connections()
825 connections = g_list_prepend (connections, in g_dbus_interface_skeleton_get_connections()
832 return g_list_reverse (connections); in g_dbus_interface_skeleton_get_connections()
858 for (l = interface_->priv->connections; l != NULL; l = l->next) in g_dbus_interface_skeleton_has_connection()
959 g_return_if_fail (interface_->priv->connections != NULL); in g_dbus_interface_skeleton_unexport()
967 while (interface_->priv->connections != NULL) in g_dbus_interface_skeleton_unexport()
969 ConnectionData *data = interface_->priv->connections->data; in g_dbus_interface_skeleton_unexport()
998 g_return_if_fail (interface_->priv->connections != NULL); in g_dbus_interface_skeleton_unexport_from_connection()
1008 if (interface_->priv->connections == NULL) in g_dbus_interface_skeleton_unexport_from_connection()