HomeSort by relevance Sort by last modified time
    Searched refs:host (Results 1 - 25 of 3190) 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/chromium-trace/catapult/third_party/polymer/components/paper-dropdown/
paper-dropdown-transition.css 8 :host(.core-transition) #ripple,
9 :host(.core-transition) #background {
13 :host(.core-transition) #scroller {
  /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",
  /frameworks/support/v4/ics/android/support/v4/view/
AccessibilityDelegateCompatIcs.java 31 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event);
32 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event);
33 public void onInitializeAccessibilityNodeInfo(View host, Object info);
34 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event);
35 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
37 public void sendAccessibilityEvent(View host, int eventType);
38 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event);
48 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event) {
49 return bridge.dispatchPopulateAccessibilityEvent(host, event);
53 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event)
    [all...]
  /external/autotest/server/site_tests/power_DarkResumeShutdownServer/
power_DarkResumeShutdownServer.py 26 def initialize(self, host):
28 self.orig_boot_id = host.get_boot_id()
30 host.run('mkdir -p %s' % TMP_POWER_DIR)
34 host.run('echo %s %d > %s/dark_resume_suspend_durations' %
40 host.run('echo %s > %s/dark_resume_sources' %
45 host.run('echo 0 > %s/disable_dark_resume' % TMP_POWER_DIR)
48 host.run('mount --bind %s %s' % (TMP_POWER_DIR, POWER_DIR))
52 host.run('restart powerd')
64 def run_once(self, host=None):
77 @param host: The machine to run the tests o
    [all...]
  /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/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
  /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 19 def host_in_lab(host):
20 """Check if the host is in the lab and an object the AFE knows.
22 This check ensures that autoserv and the host's current job is running
24 case it then verifies the host is registed with the configured AFE
27 @param host: Host object to verify.
29 @returns The host model object.
31 if not host.job or not host.job.in_lab:
33 return AFE.get_hosts(hostname=host.hostname
    [all...]
  /frameworks/support/v4/jellybean/android/support/v4/view/
AccessibilityDelegateCompatJellyBean.java 33 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event);
34 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event);
35 public void onInitializeAccessibilityNodeInfo(View host, Object info);
36 public void onPopulateAccessibilityEvent(View host, AccessibilityEvent event);
37 public boolean onRequestSendAccessibilityEvent(ViewGroup host, View child,
39 public void sendAccessibilityEvent(View host, int eventType);
40 public void sendAccessibilityEventUnchecked(View host, AccessibilityEvent event);
41 public Object getAccessibilityNodeProvider(View host);
42 public boolean performAccessibilityAction(View host, int action, Bundle args);
50 public boolean dispatchPopulateAccessibilityEvent(View host, AccessibilityEvent event)
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
AccessibilityDelegateCompat.java 34 * host methods. This prevents certain properties such as class name from
37 * as any changes will be overwritten by the host class.
40 * methods are called <i>after</i> host methods, which all properties to be
41 * modified without being overwritten by the host class.
48 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host,
50 public void onInitializeAccessibilityEvent(Object delegate, View host,
52 public void onInitializeAccessibilityNodeInfo(Object delegate, View host,
54 public void onPopulateAccessibilityEvent(Object delegate, View host,
56 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child,
58 public void sendAccessibilityEvent(Object delegate, View host, int eventType)
    [all...]

Completed in 333 milliseconds

1 2 3 4 5 6 7 8 91011>>