HomeSort by relevance Sort by last modified time
    Searched refs:get_hosts (Results 1 - 25 of 50) sorted by null

1 2

  /external/autotest/frontend/afe/
direct_afe_unittest.py 17 hosts = afe.get_hosts()
21 hosts = afe.get_hosts()
  /external/autotest/server/cros/network/
rf_switch_utils.py 26 rf_switch_hosts = afe.get_hosts(label=RF_SWITCH_LABEL, locked=False)
48 rf_switch = afe.get_hosts(hostnames=(rf_switch_host.hostname,))
rf_switch_utils_test.py 35 afe_instance.get_hosts.return_value = [mock_host_instance]
47 afe_instance.get_hosts.return_value = [mock_host_instance]
59 afe_instance.get_hosts.return_value = []
71 afe_instance.get_hosts.return_value = [mock_host_instance]
81 afe_instance.get_hosts.return_value = [mock_host_instance]
rf_switch_client_box_test.py 31 afe_instance.get_hosts.return_value = [self.client_box_host, dut_host]
43 afe_instance.get_hosts.return_value = [self.client_box_host]
56 afe_instance.get_hosts.side_effect = [[stumpy_host]]
71 afe_instance.get_hosts.side_effect = [[self.client_box_host],
rf_switch_controller_test.py 45 afe_instance.get_hosts.return_value = [
59 afe_instance.get_hosts.return_value = [
74 afe_instance.get_hosts.return_value = [self.client_box_host]
89 afe_instance.get_hosts.return_value = [self.client_box_host]
rf_switch_controller.py 48 self.hosts = afe.get_hosts(label=labels[0])
rf_switch_client_box.py 66 hosts = afe.get_hosts(label=self.client_box_label)
  /external/autotest/server/hosts/
afe_store_unittest.py 38 self.mock_afe.get_hosts.return_value = [
47 self.mock_afe.get_hosts.return_value = []
54 self.mock_afe.get_hosts.return_value = [
64 self.mock_afe.get_hosts.return_value = [
81 self.mock_afe.get_hosts.return_value = [
91 self.mock_afe.get_hosts.return_value = [
102 self.mock_afe.get_hosts.return_value = [
113 self.mock_afe.get_hosts.return_value = [
moblab_host.py 205 existing_hosts = [host.hostname for host in self.afe.get_hosts()]
290 self.afe.get_hosts()
317 if not self.afe.get_hosts(status='Ready'):
318 for host in self.afe.get_hosts():
afe_store.py 41 hosts = self._afe.get_hosts(hostname=self._hostname)
chameleon_host.py 189 hosts = afe.get_hosts(hostname=dut)
  /external/autotest/site_utils/
diagnosis_utils_unittest.py 47 # Mock aef.get_hosts to return 0 host
48 self.afe_mock.get_hosts.return_value = self._mockZeroHost()
65 # Mock aef.get_hosts to return 2 available hosts
66 self.afe_mock.get_hosts.return_value = self._mockTwoAvailableHosts()
91 # Mock aef.get_hosts to return 2 failed hosts
92 self.afe_mock.get_hosts.return_value = self._mockTwoFailedHosts()
add_detected_host_labels.py 67 afe_host = afe.get_hosts(hostname=hostname)[0]
  /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 51 def get_hosts(self, ids): member in class:BaseHostQueryManager
226 for host in self.host_query_manager.get_hosts(host_ids):
481 def get_hosts(host_requests): function
  /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/site_tests/moblab_RunSuite/
moblab_RunSuite.py 55 dut = host.afe.get_hosts()[0]
  /external/toolchain-utils/
afe_lock_machine.py 242 host_info = self.local_afe.get_hosts(hostname=m)
279 host_info = self.local_afe.get_hosts(hostname=m)
515 host_info = self.afe.get_hosts(hostname=mod_host)
520 host_info = self.local_afe.get_hosts(hostname=m)
  /external/autotest/site_utils/deployment/
install.py 355 hostlist = afe.get_hosts([hostname])
379 afe_host = afe.get_hosts([hostname])[0]
583 for h in afe.get_hosts(hostnames=successful_hosts):
636 afe_host = afe.get_hosts(hostname=host)
698 afe_hosts = afe.get_hosts(hostname=host_info.hostname)
  /external/autotest/server/lib/
status_history.py 490 afehost = afe.get_hosts(hostname=hostname)[0]
514 hosts = afe.get_hosts(**kwargs)

Completed in 291 milliseconds

1 2