HomeSort by relevance Sort by last modified time
    Searched refs:host (Results 1 - 25 of 2456) 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/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/tensorflow/tensorflow/stream_executor/host/
host_platform_id.cc 16 #include "tensorflow/stream_executor/host/host_platform_id.h"
19 namespace host { namespace in namespace:stream_executor
23 } // namespace host
  /external/u-boot/drivers/mmc/
hi6220_dw_mmc.c 20 static int hi6220_dwmci_core_init(struct dwmci_host *host, int index)
22 host->name = "Hisilicon DWMMC";
24 host->dev_index = index;
27 if (add_dwmci(host, DWMMC_MAX_FREQ, DWMMC_MIN_FREQ)) {
42 struct dwmci_host *host = NULL; local
44 host = calloc(1, sizeof(struct dwmci_host));
45 if (!host) {
50 host->ioaddr = (void *)(ulong)regbase;
51 host->buswidth = bus_width;
52 host->bus_hz = MMC0_DEFAULT_FREQ
    [all...]
sh_mmcif.c 26 struct sh_mmcif_host *host = dev_id; local
29 state = sh_mmcif_read(&host->regs->ce_int);
30 state &= sh_mmcif_read(&host->regs->ce_int_mask);
33 sh_mmcif_write(~(INT_RBSYE | INT_CRSPE), &host->regs->ce_int);
34 sh_mmcif_bitclr(MASK_MRBSYE, &host->regs->ce_int_mask);
37 sh_mmcif_write(~INT_CRSPE, &host->regs->ce_int);
38 sh_mmcif_bitclr(MASK_MCRSPE, &host->regs->ce_int_mask);
40 if (sh_mmcif_read(&host->regs->ce_cmd_set) & CMD_SET_RBSY)
44 sh_mmcif_write(~INT_BUFREN, &host->regs->ce_int);
45 sh_mmcif_bitclr(MASK_MBUFREN, &host->regs->ce_int_mask)
577 struct sh_mmcif_host *host = mmc_priv(mmc); local
584 struct sh_mmcif_host *host = mmc_priv(mmc); local
591 struct sh_mmcif_host *host = mmc_priv(mmc); local
614 struct sh_mmcif_host *host = NULL; local
645 struct sh_mmcif_host *host = dev_get_priv(dev); local
652 struct sh_mmcif_host *host = dev_get_priv(dev); local
673 struct sh_mmcif_host *host = dev_get_priv(dev); local
    [all...]
  /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) {
string_functions.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/python/mock/tools/
pre-applypatch 18 host=$(ls ~/.virtualenvs/mock-$version-* -d | sed -e "s/^.*mock-$version-//")
19 if [ -z "$host" ]; then
20 echo "No host found for $version"
23 echo testing $version in virtualenv mock-$version-$host on ssh host $host
24 ssh $host "cd work/mock && . ~/.virtualenvs/mock-$version-$host/bin/activate && pip install .[test] && unit2"
  /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/grpc-grpc/src/core/lib/gpr/
host_port.h 24 /** Given a host and port, creates a newly-allocated string of the form
25 "host:port" or "[ho:st]:port", depending on whether the host contains colons
26 like an IPv6 literal. If the host is already bracketed, then additional
34 int gpr_join_host_port(char** out, const char* host, int port);
36 /** Given a name in the form "host:port" or "[ho:st]:port", split into hostname
39 Return 1 on success, 0 on failure. Guarantees *host and *port == NULL on
41 int gpr_split_host_port(const char* name, char** host, char** port);
  /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

Completed in 416 milliseconds

1 2 3 4 5 6 7 8 91011>>