HomeSort by relevance Sort by last modified time
    Searched defs:hosts (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/autotest/server/site_tests/hardware_StorageQualSuspendStress/
hardware_StorageQualSuspendStress.py 6 from autotest_lib.server import hosts namespace
17 client = hosts.create_host(client_ip)
  /external/autotest/server/site_tests/hardware_StorageQualTrimStress/
hardware_StorageQualTrimStress.py 6 from autotest_lib.server import hosts namespace
15 client = hosts.create_host(client_ip)
  /external/autotest/server/site_tests/stress_ClientTestReboot/
stress_ClientTestReboot.py 8 from autotest_lib.server import hosts namespace
17 host = hosts.create_host(client_ip)
  /libcore/benchmarks/src/benchmarks/regression/
DnsBenchmark.java 24 String[] hosts = new String[] { local
43 InetAddress.getByName(hosts[i % hosts.length]);
  /external/autotest/server/cros/clique_lib/
clique_dut_log_collector.py 10 from autotest_lib.server import hosts namespace
  /external/autotest/server/hosts/
base_classes.py 8 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)
bootloader_unittest.py 8 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/
bluetooth_RegressionServer.py 9 from autotest_lib.server import hosts namespace
26 client = hosts.create_host(client_ip)
  /external/autotest/server/site_tests/hardware_StorageQualBase/
hardware_StorageQualBase.py 6 from autotest_lib.server import hosts namespace
50 client = hosts.create_host(client_ip)
  /external/autotest/server/site_tests/video_VDAStress/
video_VDAStress.py 9 from autotest_lib.server import hosts namespace
21 host = hosts.create_host(machine)
  /external/autotest/server/tests/netperf2/
netperf2.py 1 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/
netpipe.py 1 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/
vpm_int.h 63 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/
Args2.java 41 public List hosts = new ArrayList(); field in class:Args2
  /external/autotest/cli/
change_protection_level.py 15 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/frontend/client/src/autotest/tko/
MachineQualHistogram.java 21 * * hosts: HTML list of hosts in this bucket
30 String hosts = Utils.jsonToString(drilldownParams.get("hosts")); local
31 showNADialog(hosts);
42 private void showNADialog(String hosts) {
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/
deb_kernel_unittest.py 7 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")
site_server_job_utils.py 18 from autotest_lib.server import autotest, hosts, host_attributes namespace
147 self._host = hosts.create_host(self._machine)
source_kernel_unittest.py 6 from autotest_lib.server import source_kernel, autotest, hosts namespace
12 self.host = self.god.create_mock_class(hosts.RemoteHost, "host")
  /external/autotest/site_utils/
add_detected_host_labels.py 7 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/
lab_deploy_helper.py 22 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/
local_host.py 8 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/
dhcp_failed_machines.py 73 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/frontend/client/src/autotest/afe/
HostDataSource.java 27 * Convert the raw JSONObjects to Hosts.
31 List<JSONObject> hosts = new ArrayList<JSONObject>(); local
35 hosts.add(host);
37 return hosts;
  /external/autotest/server/cros/chaos_lib/
chaos_runner.py 15 from autotest_lib.server import hosts namespace
68 webdriver_master = hosts.SSHHost(MASTERNAME, user='chaosvmmaster')
126 hosts.create_host(self._host.hostname),

Completed in 747 milliseconds

1 2 3 4 5