Lines Matching defs:host
597 _cleanup_free_ char *host = NULL, *port = NULL, *family = NULL;
616 r = parse_address_key(p, "host", &host);
637 if (!host || !port)
649 r = getaddrinfo(host, port, &hints, &result);
1311 int bus_set_address_system_remote(sd_bus *b, const char *host) {
1316 assert(host);
1319 m = strchr(host, ':');
1328 /* Cut out the host part */
1329 t = strndupa(host, m - host - 1);
1339 e = bus_address_escape(host);
1351 _public_ int sd_bus_open_system_remote(sd_bus **ret, const char *host) {
1355 assert_return(host, -EINVAL);
1362 r = bus_set_address_system_remote(bus, host);