Searched defs:hosts (Results 1 - 25 of 80) sorted by relevance

1234

/external/autotest/server/site_tests/hardware_StorageQualSuspendStress/
H A Dhardware_StorageQualSuspendStress.py6 from autotest_lib.server import hosts namespace
17 client = hosts.create_host(client_ip)
/external/autotest/server/site_tests/hardware_StorageQualTrimStress/
H A Dhardware_StorageQualTrimStress.py6 from autotest_lib.server import hosts namespace
15 client = hosts.create_host(client_ip)
/external/autotest/server/site_tests/stress_ClientTestReboot/
H A Dstress_ClientTestReboot.py8 from autotest_lib.server import hosts namespace
17 host = hosts.create_host(client_ip)
/external/autotest/frontend/client/src/autotest/tko/
H A DMachineQualHistogram.java21 * * hosts: HTML list of hosts in this bucket
30 String hosts = Utils.jsonToString(drilldownParams.get("hosts"));
31 showNADialog(hosts);
42 private void showNADialog(String hosts) { argument
43 new SimpleDialog("Did not run any of the selected tests:", new HTML(hosts)).center();
47 new SimpleDialog("No hosts in this pass rate range", new HTML()).center();
/external/autotest/server/cros/clique_lib/
H A Dclique_dut_log_collector.py10 from autotest_lib.server import hosts namespace
/external/autotest/server/hosts/
H A Dbase_classes.py8 You should import the "hosts" package instead of importing each type of host.
22 from autotest_lib.client.common_lib import hosts namespace
24 from autotest_lib.server.hosts import bootloader
27 class Host(hosts.Host):
62 self.job.hosts.add(self)
80 self.job.hosts.discard(self)
H A Dbootloader_unittest.py8 from autotest_lib.server import utils, hosts namespace
9 from autotest_lib.server.hosts import bootloader
26 return self.god.create_mock_class(hosts.RemoteHost, "host")
/external/autotest/server/site_tests/bluetooth_RegressionServer/
H A Dbluetooth_RegressionServer.py9 from autotest_lib.server import hosts namespace
26 client = hosts.create_host(client_ip)
/external/autotest/server/site_tests/hardware_StorageQualBase/
H A Dhardware_StorageQualBase.py6 from autotest_lib.server import hosts namespace
50 client = hosts.create_host(client_ip)
/external/autotest/server/site_tests/video_VDAStress/
H A Dvideo_VDAStress.py9 from autotest_lib.server import hosts namespace
21 host = hosts.create_host(machine)
/external/autotest/server/tests/netperf2/
H A Dnetperf2.py1 from autotest_lib.server import autotest, hosts, subcommand, test namespace
13 server = hosts.create_host(pair[0])
14 client = hosts.create_host(pair[1])
/external/autotest/server/tests/netpipe/
H A Dnetpipe.py1 from autotest_lib.server import autotest, hosts, subcommand, test namespace
13 server = hosts.create_host(pair[0])
14 client = hosts.create_host(pair[1])
/external/boringssl/src/crypto/x509/
H A Dvpm_int.h63 STACK_OF(OPENSSL_STRING) *hosts; /* Set of acceptable names */ member in struct:X509_VERIFY_PARAM_ID_st
/external/jcommander/src/test/java/com/beust/jcommander/args/
H A DArgs2.java41 public List hosts = new ArrayList(); field in class:Args2
/external/autotest/cli/
H A Dchange_protection_level.py15 assert len(leftover_args) > 1, 'Must pass protection level and hosts'
22 hosts = afe_proxy.run('get_hosts', hostname__in=leftover_args[1:]) variable
23 for host in hosts:
32 print 'Invalid hosts:'
33 print ','.join(set(leftover_args[1:]) - set(host['hostname'] for host in hosts))
/external/autotest/server/
H A Ddeb_kernel_unittest.py7 from autotest_lib.server import deb_kernel, utils, hosts namespace
8 from autotest_lib.server.hosts import bootloader
15 self.host = self.god.create_mock_class(hosts.RemoteHost, "host")
H A Dsite_server_job_utils.py18 from autotest_lib.server import autotest, hosts, host_attributes namespace
147 self._host = hosts.create_host(self._machine)
H A Dsource_kernel_unittest.py6 from autotest_lib.server import source_kernel, autotest, hosts namespace
12 self.host = self.god.create_mock_class(hosts.RemoteHost, "host")
H A Drpm_kernel_unittest.py7 from autotest_lib.server import rpm_kernel, utils, hosts namespace
8 from autotest_lib.server.hosts import bootloader
24 host = self.god.create_mock_class(hosts.RemoteHost, "host")
/external/autotest/site_utils/
H A Dadd_detected_host_labels.py7 the known hosts and tries to call get_labels()
30 from autotest_lib.server import hosts namespace
53 host = hosts.create_host(hostname)
84 afe_label.remove_hosts(hosts=[hostname])
85 label.add_hosts(hosts=[hostname])
137 'hosts.', attempts-successes, attempts)
/external/autotest/site_utils/deploy_autotest/
H A Dlab_deploy_helper.py22 from autotest_lib.server import hosts namespace
92 devserver_sync(hosts.SSHHost(server))
96 autotest_sync(hosts.SSHHost(server))
104 devserver_restart(hosts.SSHHost(server))
108 autotest_restart(hosts.SSHHost(server))
/external/autotest/client/bin/
H A Dlocal_host.py8 from autotest_lib.client.common_lib import hosts, error namespace
11 class LocalHost(hosts.Host):
43 @see common_lib.hosts.Host.run()
/external/autotest/contrib/
H A Ddhcp_failed_machines.py73 hosts = sorted([lookup(h) for h in offenders]) variable
75 pprint.pprint(hosts)
81 (len(hosts), ', '.join(hosts)))
85 (len(hosts), ', '.join(hosts)))
89 (len(hosts), ', '.join(hosts)))
/external/autotest/server/cros/chaos_lib/
H A Dchaos_runner.py15 from autotest_lib.server import hosts namespace
68 webdriver_master = hosts.SSHHost(MASTERNAME, user='chaosvmmaster')
126 hosts.create_host(self._host.hostname),
/external/autotest/server/self-test/
H A Dautotest_test.py18 from autotest_lib.server import hosts namespace
37 result = hosts.CmdResult()
61 result= hosts.CmdResult()
91 result= hosts.CmdResult()
112 result= hosts.CmdResult()

Completed in 1875 milliseconds

1234