Lines Matching defs:host
295 char *host;
301 host = (char *)hostent->h_name;
302 XdmcpAllocARRAY8 (hostname, strlen (host));
303 memcpy(hostname->data, host, hostname->length);
352 DisposeHostname (HostName *host)
354 XdmcpDisposeARRAY8 (&host->hostname);
355 XdmcpDisposeARRAY8 (&host->hostaddr);
356 XdmcpDisposeARRAY8 (&host->status);
357 free (host->fullname);
358 free (host);
442 HostAddr *host, **prev;
444 host = malloc (sizeof (HostAddr));
445 if (!host)
447 host->addr = malloc (len);
448 if (!host->addr)
450 free (host);
453 memcpy(host->addr, addr, len);
454 host->addrlen = len;
455 host->type = type;
458 *prev = host;
459 host->next = NULL;
463 * Register the address for this host.
466 * addresses on the local host.
766 Returns 1 when host is willing and 0 if not
775 /* Assume the next host is willing */
820 Selectfirst selects the first willing host
821 in the chooser list (so you can select a host without
854 when you try to select a host with your mouse
868 HostCycle tries to select the next willing host across
869 the list end and will stop at the first found willing host
883 /* No other willing host could be found, stay at the old one*/