Home | History | Annotate | Download | only in command_processor

Lines Matching refs:host

34         """Shows a list of host controllers.
40 for ind, host in enumerate(hosts):
41 self.console._Print("[%3d] %s" % (ind, host.hostname))
57 "--host", type=int, help="The index of the host.")
67 if args.host is None:
70 hosts = [(args.host, self.console._hosts[args.host])]
74 for ind, host in hosts:
75 devices = host.ListDevices()
76 self.console._Print("[%3d] %s" % (ind, host.hostname))