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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/client/cros/netprotos/
__init__.py 13 In either case, the interface used requires a Host object providing the
15 * Host.ip_addr property, with the host's IP address in plain text.
16 * Host.socket(family, sock_type) that returns a new asynchronous socket.
23 See lansim.host.UDPSocket for details on the utilization of this interface.
33 To launch a ZeroconfDaemon on a simulated Host, simply create that
34 object for the given Host instance as follows:
36 zero = zeroconf.ZeroconfDaemon(host_b, "host-name-b")
  /external/c-ares/
ares_free_hostent.c 27 void ares_free_hostent(struct hostent *host)
31 if (!host)
34 free((char *)(host->h_name));
35 for (p = host->h_aliases; *p; p++)
37 free(host->h_aliases);
38 free(host->h_addr_list[0]); /* no matter if there is one or many entries,
40 free(host->h_addr_list);
41 free(host);
  /external/autotest/server/site_tests/android_DummyTest/
android_DummyTest.py 13 def run_once(self, host=None):
18 @param host: host object representing the device under test.
20 self.host = host
21 self.host.adb_run('shell ls')
  /external/clang/test/Sema/
attr-endian.c 3 int p1 __attribute__((endian(host))); // expected-warning {{unknown attribute 'endian' ignored}}
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
HostAndPort.java 21 * A data-only (transfer) object representing a host (InetAddress) and port number
24 * This class contains two public properties: host (java.net.InetAddress) and port (int).
30 public InetAddress host; field in class:HostAndPort
34 * Construct a new instance with the specified host and port
35 * @param host - the InetAddress host
38 public HostAndPort(InetAddress host, int port) {
39 this.host = host;
  /external/chromium-libpac/test/js-unittest/
return_empty_string.js 1 function FindProxyForURL(url, host) {
return_integer.js 1 function FindProxyForURL(url, host) {
direct.js 1 function FindProxyForURL(url, host) {
return_function.js 1 function FindProxyForURL(url, host) {
return_null.js 1 function FindProxyForURL(url, host) {
return_undefined.js 1 function FindProxyForURL(url, host) {
  /external/iproute2/etc/iproute2/
rt_scopes 6 254 host
  /external/apache-http/src/org/apache/http/conn/
HttpHostConnectException.java 50 private final HttpHost host; field in class:HttpHostConnectException
52 public HttpHostConnectException(final HttpHost host, final ConnectException cause) {
53 super("Connection to " + host + " refused");
54 this.host = host;
59 return this.host;
  /external/autotest/server/site_tests/platform_CloseOpenLid/
platform_CloseOpenLid.py 9 """Uses servo to send the host to sleep and wake back up.
16 def run_once(self, host):
18 boot_id = host.get_boot_id()
19 host.servo.lid_close()
20 host.test_wait_for_shutdown()
22 host.servo.lid_open()
23 host.servo.pass_devmode()
24 host.test_wait_for_boot(boot_id)
27 boot_id = host.get_boot_id()
28 host.servo.power_long_press(
    [all...]
  /external/autotest/server/site_tests/system_ColdBoot/
system_ColdBoot.py 21 def run_once(self, host):
22 boot_id = host.get_boot_id()
24 host.run("poweroff")
25 host.test_wait_for_shutdown(self.TIMEOUT_POWEROFF_TRANSITION)
28 host.servo.power_normal_press()
29 host.test_wait_for_boot(boot_id)
31 autotest.Autotest(host).run_test("desktopui_SimpleLogin",
  /external/autotest/server/site_tests/brillo_PowerMgmtInterfaces/
brillo_PowerMgmtInterfaces.py 16 def check_cpuidle(self, host):
17 cpuidle_driver = host.run_output('cat /sys/devices/system/cpu/cpuidle/current_driver')
22 def check_cpufreq(self, host):
23 cpufreq_governors = host.run_output('cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors')
28 def check_wakelocks(self, host):
29 wakelock_ls = host.run_output('ls /sys/power/wake_lock')
31 def check_suspend(self, host):
32 pm_states = host.run_output('cat /sys/power/state')
36 def run_once(self, host):
39 @param host: a host object representing the DUT
    [all...]
  /external/autotest/server/site_tests/infra_FirmwareAutoupdate/
infra_FirmwareAutoupdate.py 31 def run_once(self, host):
32 host.run('chromeos-firmwareupdate --mode=autoupdate')
33 host.reboot()
  /external/autotest/server/site_tests/platform_LongPressPower/
platform_LongPressPower.py 11 """Uses servo pwr_button gpio to power the host off and back on.
15 def run_once(self, host):
16 boot_id = host.get_boot_id()
19 host.servo.power_long_press()
21 # ensure host is now off
22 if host.is_up():
25 # ensure host boots
26 host.servo.boot_devmode()
27 host.test_wait_for_boot(boot_id)
  /external/autotest/server/hosts/
repair.py 15 Verifier to test a host's accessibility via `ssh`.
17 This verifier checks whether a given host is reachable over `ssh`.
20 * The host can't be found with a DNS lookup.
21 * The host doesn't answer to ping.
22 * The host answers to ping, but not to ssh.
25 def verify(self, host):
26 if host.is_up():
30 socket.gethostbyname(host.hostname)
35 if utils.ping(host.hostname, tries=1, deadline=1) != 0:
37 raise hosts.AutoservVerifyError(msg % host.hostname
    [all...]
  /external/jcommander/src/test/java/com/beust/jcommander/
HostPort.java 22 public String host; field in class:HostPort
27 return "[Host:" + host + " port:" + port + "]";
  /external/jcommander/src/test/resources/
MessageBundle_fr_FR.properties 19 host = H?te
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
ViewRootImpl_Accessor.java 23 public static void dispatchApplyInsets(ViewRootImpl viewRoot, View host) {
24 viewRoot.dispatchApplyInsets(host);
  /libcore/ojluni/src/main/java/java/net/
UnknownHostException.java 31 * Thrown to indicate that the IP address of a host could not be determined.
44 * @param host the detail message.
46 public UnknownHostException(String host) {
47 super(host);
  /external/autotest/server/
afe_utils.py 30 def _host_in_lab(host):
31 """Check if the host is in the lab and an object the AFE knows.
33 This check ensures that autoserv and the host's current job is running
35 case it then verifies the host is registed with the configured AFE
38 @param host: Host object to verify.
40 @returns The host model object.
42 if not host.job or not host.job.in_lab:
44 return host._afe_hos
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallIdentifier.java 53 * host field
55 protected String host; field in class:CallIdentifier
66 * @param host is the host.
68 public CallIdentifier(String localId, String host) {
70 this.host = host;
93 if (host != null) {
94 buffer.append(AT).append(host);
114 if (this.host == that.host
    [all...]

Completed in 1071 milliseconds

1 2 3 4 5 6 7 8 91011>>