Lines Matching full:info
39 #define info(fmt...)
96 struct watch_info *info = data;
99 dbus_connection_ref(info->conn);
106 dbus_watch_handle(info->watch, flags);
108 dbus_connection_unref(info->conn);
115 struct watch_info *info = data;
117 if (info->id > 0) {
118 g_source_remove(info->id);
119 info->id = 0;
122 dbus_connection_unref(info->conn);
124 g_free(info);
132 struct watch_info *info;
139 info = g_new0(struct watch_info, 1);
144 info->watch = watch;
145 info->conn = dbus_connection_ref(conn);
147 dbus_watch_set_data(watch, info, watch_info_free);
154 info->id = g_io_add_watch(chan, cond, watch_func, info);