/external/autotest/frontend/afe/ |
direct_afe_unittest.py | 17 hosts = afe.get_hosts() 21 hosts = afe.get_hosts()
|
rpc_interface_unittest.py | 74 hosts = rpc_interface.get_hosts() 77 hosts = rpc_interface.get_hosts(hostname='host1') 88 hosts = rpc_interface.get_hosts( 96 hosts = rpc_interface.get_hosts(hostname__in=['host1', 'host2'], 102 hosts = rpc_interface.get_hosts( 111 hosts = rpc_interface.get_hosts( 347 data = rpc_interface.get_hosts(hostname='host1', valid_only=False)
|
/external/autotest/contrib/ |
manage_powerunit_info.py | 64 if not afe.get_hosts(hostname=device): 103 hosts = afe.get_hosts() 118 hosts = afe.get_hosts(hostname__in = devices)
|
generate_rpm_mapping.py | 468 AFE.get_hosts(),
|
/external/autotest/scheduler/ |
rdb_lib.py | 90 def get_hosts(host_ids): function 93 get_hosts is different from acquire_hosts in that it is completely 103 rdb_requests.HostRequest, rdb.get_hosts)
|
rdb_unittest.py | 33 rdb_requests.HostRequest, rdb.get_hosts) 93 1. We actually call get_hosts on the query_manager for a 106 self.handler.host_query_manager.get_hosts = mock.MagicMock( 240 len(self.available_hosts_query_manager.get_hosts( 247 hosts = self.all_hosts_query_manager.get_hosts([db_host.id]) 253 hosts = self.all_hosts_query_manager.get_hosts([hosts[0].id])
|
rdb.py | 48 def get_hosts(self, ids): member in class:BaseHostQueryManager 224 for host in self.host_query_manager.get_hosts(host_ids): 481 def get_hosts(host_requests): function
|
/external/autotest/server/hosts/ |
moblab_host.py | 146 afe.get_hosts() 186 existing_hosts = [host.hostname for host in self.afe.get_hosts()] 250 if not self.afe.get_hosts(status='Ready'): 251 for host in self.afe.get_hosts():
|
chameleon_host.py | 222 hosts = afe.get_hosts(hostname=dut)
|
servo_host.py | 697 hosts = afe.get_hosts(hostname=dut)
|
/external/autotest/server/site_tests/moblab_RunSuite/ |
moblab_RunSuite.py | 36 board = host.afe.get_hosts()[0].platform
|
/external/autotest/server/cros/ |
host_lock_manager_unittest.py | 80 self.afe.get_hosts(hostname=self.HOST1).AndReturn(None) 89 self.afe.get_hosts(hostname=self.HOST1).AndReturn(host_info) 98 self.afe.get_hosts(hostname=self.HOST1).AndReturn(host_info) 107 self.afe.get_hosts(hostname=self.HOST1).AndReturn(host_info) 117 self.afe.get_hosts(hostname=self.HOST1).AndReturn(host_info)
|
host_lock_manager.py | 84 host_info = self._afe.get_hosts(hostname=mod_host)
|
/external/autotest/cli/ |
atest_migrate_host | 14 old_host = old.get_hosts(hostname=hostname)[0]
|
/external/autotest/server/ |
afe_utils.py | 33 return AFE.get_hosts(hostname=host.hostname)
|
frontend.py | 219 def get_hosts(self, hostnames=(), status=None, label=None, **dargs): member in class:AFE 224 hosts = self.run('get_hosts', **query_args) 229 """Like get_hosts() but returns hostnames instead of Host objects.""" 233 self.get_hosts(status=status, label=label, **dargs)] 247 return self.get_hosts(id=id)[0] 310 # to get those back from an explicit get_hosts queury, then patch 314 for host in self.get_hosts(hostname__in=hostnames): 565 hosts = self.get_hosts(multiple_labels=[pairing.machine_label]) [all...] |
site_autotest.py | 47 hosts = afe.get_hosts(hostname=self.host.hostname)
|
/external/autotest/site_utils/ |
add_detected_host_labels.py | 67 afe_host = afe.get_hosts(hostname=hostname)[0]
|
brillo_test_launcher.py | 102 if all([host.hostname != adb_hostname for host in moblab.afe.get_hosts()]): 173 afe_host = moblab.afe.get_hosts(hostnames=(host,))[0]
|
diagnosis_utils.py | 159 hosts = self.rpc_interface.get_hosts( 196 hosts = self.rpc_interface.get_hosts(
|
brillo_common.py | 84 host.afe.get_hosts()
|
status_history.py | 342 afehost = afe.get_hosts(hostname=hostname)[0] 378 hosts = afe.get_hosts(**kwargs)
|
/external/autotest/site_utils/deployment/ |
install.py | 381 hostlist = afe.get_hosts([hostname]) 423 afe_host = afe.get_hosts([hostname])[0] 506 afe_host_list = afe.get_hosts(hostnames=success_hosts) 508 for h in afe.get_hosts(hostnames=success_hosts):
|
/external/autotest/server/cros/dynamic_suite/ |
tools.py | 123 updated_hosts = afe.get_hosts(hostnames=hostnames)
|
/external/autotest/site_utils/rpm_control_system/ |
frontend_server.py | 225 hosts = self._afe.get_hosts(hostname=device_hostname)
|