Home
last modified time | relevance | path

Searched refs:is_localhost (Results 1 – 9 of 9) sorted by relevance

/external/autotest/server/hosts/
Dservo_repair.py638 if host.is_localhost():
827 if host.is_localhost() or not host.is_cros_host():
861 if host.is_localhost() or not host.is_labstation():
916 return (not host.is_localhost()) and host.is_ec_supported()
964 if host.is_localhost():
1027 return (not host.is_localhost() and host.get_dut_health_profile()
Dservo_host.py315 and not self.is_localhost()):
345 if not self.is_localhost():
584 if not self.is_localhost():
638 if self.is_localhost():
696 if self.is_localhost():
1184 not self.is_localhost())
1692 if newhost.is_localhost():
Dbase_servohost.py207 def is_localhost(self): member in BaseServoHost
543 if self.is_localhost():
Dcros_host.py2002 is_localhost = self.hostname in ['localhost', '127.0.0.1']
2003 is_forwarded = is_localhost and not self.is_default_port
/external/autotest/site_utils/lib/
Dinfra.py135 if utils.is_localhost(host):
/external/autotest/site_utils/
Dmysql_bootstrap.py223 local_hostname = ('localhost' if utils.is_localhost(dest_host)
/external/autotest/server/cros/servo/
Dservo.py672 def is_localhost(self): member in Servo
678 return self._servo_host.is_localhost()
1397 if copy_image and not self.is_localhost():
1417 if copy_image and not self.is_localhost():
/external/autotest/server/site_tests/firmware_ECPowerButton/
Dfirmware_ECPowerButton.py152 if self.servo.is_localhost() and self.has_internal_display:
/external/autotest/client/common_lib/
Dutils.py2410 def is_localhost(server): function