Lines Matching full:hostname
23 def create_teststationhost(hostname, **kwargs): argument
26 @param hostname: Hostname of the test station.
32 if hostname == 'localhost':
37 return host_class(hostname, **kwargs)
44 def check_credentials(self, hostname): argument
47 @param hostname: Hostname of the machine.
49 if hostname != 'localhost':
58 def _initialize(self, hostname='localhost', *args, **dargs): argument
61 This will create a Test Station Host. Hostname should always refer
64 @param hostname: Hostname of the machine, default to localhost.
67 hostname)
70 super(TestStationHost, self)._initialize(hostname=hostname, *args,
73 self.check_credentials(hostname)