Lines Matching full:address
109 GString *address;
115 "--print-address=1", /* stdout */
132 address = g_string_new (NULL);
134 /* polling until the dbus-daemon writes out its address is a bit stupid,
146 g_string_append_len (address, buf, bytes);
148 newline = strchr (address->str, '\n');
152 g_string_truncate (address, newline - address->str);
159 return g_string_free (address, FALSE);
163 connect_to_bus (const gchar *address)
169 conn = dbus_connection_open_private (address, &error);
381 gchar *address;
407 address = spawn_dbus_daemon (dbus_daemon, config, &f->daemon_pid);
412 f->sender = connect_to_bus (address);
415 f->receiver = connect_to_bus (address);
416 f->eavesdropper = connect_to_bus (address);
417 f->politelistener = connect_to_bus (address);
422 g_free (address);