Lines Matching refs:hostname
22 def create_teststationhost(hostname, **kwargs):
25 @param hostname: Hostname of the test station.
31 if hostname == 'localhost':
36 return host_class(hostname, **kwargs)
43 def check_credentials(self, hostname):
46 @param hostname: Hostname of the machine.
48 if hostname != 'localhost':
57 def _initialize(self, hostname='localhost', *args, **dargs):
60 This will create a Test Station Host. Hostname should always refer
63 @param hostname: Hostname of the machine, default to localhost.
66 hostname)
69 super(TestStationHost, self)._initialize(hostname=hostname, *args,
72 self.check_credentials(hostname)