Lines Matching refs:hih
2736 HelperInterfaceHandler *hih = g_new0 (HelperInterfaceHandler, 1);
2737 hih->connection = connection;
2738 hih->interface_name = g_strdup (interface_name);
2739 hih->introspection_xml = g_strdup (introspection_xml);
2740 hih->udi = g_strdup (udi);
2741 helper_interface_handlers = g_slist_append (helper_interface_handlers, hih);
3776 HelperInterfaceHandler *hih = i->data;
3777 if (strcmp (hih->udi, path) == 0) {
3778 xml = g_string_append (xml, hih->introspection_xml);
4107 HelperInterfaceHandler *hih = i->data;
4108 if (strcmp (hih->udi, udi) == 0 &&
4109 strcmp (hih->interface_name, interface) == 0) {
4113 /*HAL_INFO (("forwarding method to connection 0x%x", hih->connection));*/
4119 if (!dbus_connection_send_with_reply (hih->connection,
4257 HelperInterfaceHandler *hih = i->data;
4261 if (hih->connection == connection) {
4262 g_free (hih->interface_name);
4263 g_free (hih->introspection_xml);
4264 g_free (hih->udi);
4265 g_free (hih);