Home | History | Annotate | Download | only in gdbus

Lines Matching refs:info

41 #define info(fmt...)
99 struct watch_info *info = dbus_watch_get_data(watch);
109 if (dbus_connection_get_dispatch_status(info->conn) == DBUS_DISPATCH_DATA_REMAINS)
110 g_timeout_add(DISPATCH_TIMEOUT, message_dispatch_cb, info->conn);
119 struct watch_info *info;
125 info = g_new(struct watch_info, 1);
128 info->io = g_io_channel_unix_new(fd);
129 info->conn = dbus_connection_ref(conn);
131 dbus_watch_set_data(watch, info, NULL);
138 info->watch_id = g_io_add_watch(info->io, cond, watch_func, watch);
145 struct watch_info *info = dbus_watch_get_data(watch);
149 if (info) {
150 g_source_remove(info->watch_id);
151 g_io_channel_unref(info->io);
152 dbus_connection_unref(info->conn);
153 g_free(info);