/external/autotest/frontend/afe/doctests/ |
D | 001_rpc_test.txt | 102 >>> data = rpc_interface.get_hosts() 131 >>> data = rpc_interface.get_hosts() 147 >>> rpc_interface.get_hosts() == [] 249 >>> data = rpc_interface.get_hosts(hostname='host1') 252 >>> data = rpc_interface.get_hosts(hostname='host2') 260 >>> data = rpc_interface.get_hosts(labels__name='label1') 263 >>> data = rpc_interface.get_hosts(labels__name='label2') 269 >>> data = rpc_interface.get_hosts(hostname='host1') 272 >>> rpc_interface.get_hosts(labels__name='label2') 286 >>> data = rpc_interface.get_hosts(hostname='host1') [all …]
|
/external/autotest/frontend/afe/ |
D | direct_afe_unittest.py | 17 hosts = afe.get_hosts() 21 hosts = afe.get_hosts()
|
D | 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/server/hosts/ |
D | 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():
|
D | chameleon_host.py | 222 hosts = afe.get_hosts(hostname=dut)
|
/external/autotest/server/cros/ |
D | 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)
|
D | host_lock_manager.py | 84 host_info = self._afe.get_hosts(hostname=mod_host)
|
/external/autotest/scheduler/ |
D | rdb_unittest.py | 33 rdb_requests.HostRequest, rdb.get_hosts) 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])
|
D | rdb_lib.py | 90 def get_hosts(host_ids): function 103 rdb_requests.HostRequest, rdb.get_hosts)
|
D | rdb.py | 48 def get_hosts(self, ids): member in BaseHostQueryManager 224 for host in self.host_query_manager.get_hosts(host_ids): 481 def get_hosts(host_requests): function
|
/external/autotest/contrib/ |
D | 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)
|
D | generate_rpm_mapping.py | 468 AFE.get_hosts(),
|
/external/autotest/site_utils/deployment/ |
D | 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/site_utils/ |
D | diagnosis_utils.py | 159 hosts = self.rpc_interface.get_hosts( 196 hosts = self.rpc_interface.get_hosts(
|
D | 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]
|
D | add_detected_host_labels.py | 67 afe_host = afe.get_hosts(hostname=hostname)[0]
|
D | status_history.py | 342 afehost = afe.get_hosts(hostname=hostname)[0] 378 hosts = afe.get_hosts(**kwargs)
|
D | brillo_common.py | 84 host.afe.get_hosts()
|
/external/autotest/server/site_tests/moblab_RunSuite/ |
D | moblab_RunSuite.py | 36 board = host.afe.get_hosts()[0].platform
|
/external/autotest/server/ |
D | afe_utils.py | 33 return AFE.get_hosts(hostname=host.hostname)
|
D | frontend.py | 219 def get_hosts(self, hostnames=(), status=None, label=None, **dargs): member in AFE 233 self.get_hosts(status=status, label=label, **dargs)] 247 return self.get_hosts(id=id)[0] 314 for host in self.get_hosts(hostname__in=hostnames): 565 hosts = self.get_hosts(multiple_labels=[pairing.machine_label])
|
D | site_autotest.py | 47 hosts = afe.get_hosts(hostname=self.host.hostname)
|
/external/autotest/cli/ |
D | atest_migrate_host | 14 old_host = old.get_hosts(hostname=hostname)[0]
|
/external/autotest/server/cros/dynamic_suite/ |
D | tools.py | 123 updated_hosts = afe.get_hosts(hostnames=hostnames)
|
/external/autotest/site_utils/rpm_control_system/ |
D | frontend_server.py | 225 hosts = self._afe.get_hosts(hostname=device_hostname)
|