• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/dbus/

Lines Matching defs:address

32 #include "dbus-address.h"
70 /* this is a little fragile since it assumes the address doesn't
74 copy_address_with_guid_appended (const DBusString *address,
83 if (!_dbus_string_copy (address, 0, &with_guid,
107 * @param address the server's address
113 const DBusString *address)
127 server->address = NULL;
140 server->address = copy_address_with_guid_appended (address,
142 if (server->address == NULL)
159 _dbus_verbose ("Initialized server on address %s\n", server->address);
176 if (server->address)
178 dbus_free (server->address);
179 server->address = NULL;
213 dbus_free (server->address);
538 * Listens for new connections on the given address. If there are
539 * multiple semicolon-separated address entries in the address, tries
552 * @param address the address of this server.
558 dbus_server_listen (const char *address,
567 _dbus_return_val_if_fail (address != NULL, NULL);
570 if (!dbus_parse_address (address, &entries, &len, error))
648 "Unknown address type '%s'",
653 "Empty address '%s'",
654 address);
768 * Releases the server's address and stops listening for
826 * Returns the address of the server, as a newly-allocated
830 * @returns the address or #NULL if no memory
840 retval = _dbus_strdup (server->address);
850 * would be equivalent (because the server address passed
1089 * @param slot_p address of global variable storing the slot ID
1109 * @param slot_p address of the slot to deallocate
1216 char *address;
1224 _dbus_assert_not_reached ("Failed to listen for valid address.");
1229 address = dbus_server_get_address (server);
1230 _dbus_assert (address != NULL);
1232 if (strstr (address, id) == NULL)
1234 _dbus_warn ("server id '%s' is not in the server address '%s'\n",
1235 id, address);
1236 _dbus_assert_not_reached ("bad server id or address");
1240 dbus_free (address);