Lines Matching full:hosts
63 } *hosts; variable
109 else if (prefix(args, "hosts")) in netcmd()
258 if (hosts == NULL) in selecthost()
260 free((char *)hosts), hosts = 0; in selecthost()
264 for (p = hosts; p < hosts+nhosts; p++) in selecthost()
270 hosts = (struct hitem *)malloc(sizeof (*p)); in selecthost()
272 hosts = (struct hitem *)realloc(hosts, (nhosts+1)*sizeof (*p)); in selecthost()
273 p = &hosts[nhosts++]; in selecthost()
284 if (hosts) in checkhost()
285 for (p = hosts; p < hosts+nhosts; p++) in checkhost()
298 for (p = hosts; p < hosts+nhosts; p++) { in showhosts()