Lines Matching refs:address
30 #include "dbus-address.h"
88 * @param address the address of the transport
95 const DBusString *address)
126 _dbus_assert (address == NULL);
131 _dbus_assert (address != NULL);
133 if (!_dbus_string_copy_data (address, &address_copy))
152 transport->address = address_copy;
174 if (transport->address)
175 _dbus_verbose ("Initialized transport on address %s\n", transport->address);
200 dbus_free (transport->address);
206 * Verifies if a given D-Bus address is a valid address
211 * @param error address where an error can be returned.
215 check_address (const char *address, DBusError *error)
221 _dbus_assert (address != NULL);
222 _dbus_assert (*address != '\0');
224 if (!dbus_parse_address (address, &entries, &len, error))
225 return FALSE; /* not a valid address */
242 * @param error address where an error can be returned.
248 DBusString address;
253 if (!_dbus_string_init (&address))
259 if (!_dbus_get_autolaunch_address (&address, error))
265 result = check_address (_dbus_string_get_const_data (&address), error);
272 _dbus_string_free (&address);
322 * Try to open a new transport for the given address entry. (This
325 * @param entry the address entry
387 "Unknown address type (examples of valid types are \"tcp\" and on UNIX \"unix\")");
644 * Gets the address of a transport. It will be
648 * @returns transport's address
653 return transport->address;