HomeSort by relevance Sort by last modified time
    Searched refs:host (Results 126 - 150 of 3943) sorted by null

1 2 3 4 56 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
rcsclient.py 15 HOST = 'voorn.cwi.nl'
32 host = HOST
39 host = a
40 if ':' in host:
41 i = string.find(host, ':')
42 host, p = host[:i], host[i+1:]
59 address = (host, port)
    [all...]
  /external/apache-http/src/org/apache/http/cookie/
CookieOrigin.java 50 private final String host; field in class:CookieOrigin
55 public CookieOrigin(final String host, int port, final String path, boolean secure) {
57 if (host == null) {
59 "Host of origin may not be null");
61 if (host.trim().length() == 0) {
63 "Host of origin may not be blank");
72 this.host = host.toLowerCase(Locale.ENGLISH);
83 return this.host;
105 buffer.append(this.host);
    [all...]
  /external/autotest/client/common_lib/cros/tendo/
peerd_config.py 26 def confirm_peerd_up(service_name=SERVICE_NAME, timeout_seconds=10, host=None):
33 @param host: Host object if peerd is running on a remote host.
40 'Ping', host=host, tolerate_failures=True)
63 def restart_with_config(self, host=None, timeout_seconds=10):
66 @param host: Host object if peerd is running on a remote host
    [all...]
  /external/autotest/contrib/
print_host_labels.py 15 host = factory.create_host(sys.argv[1]) variable
16 labels = host.get_labels()
  /external/autotest/server/cros/atrus/
atrus_utils.py 14 def check_dbus_available(host):
18 @param host: Host object to run a particular host.
27 host=host,
33 def force_upgrade_atrus(host):
37 @param host: Host object to run a particular host
    [all...]
  /external/autotest/server/cros/multimedia/
kiosk_facade_adapter.py 9 The Autotest host object representing the remote DUT, passed to this
13 def __init__(self, host, remote_facade_proxy):
16 @param host: Host object representing a remote host.
19 self._client = host
  /external/autotest/server/cros/network/rf_switch/
rf_switch_ssh_tunnel.py 41 host,
49 @param host: Hostname or IP address of RF Switch
56 self.host = host
64 host=self.host,
72 def RfSwitchSshTunnelSession(host,
81 @param host: Hostname or IP address of RF Switch
89 session = RfSwitchSshTunnel(host=host,
    [all...]
  /external/autotest/server/hosts/
common_label.py 19 def generate_labels(self, host):
20 return [host.get_os_type()]
remote_unittest.py 11 host = remote.RemoteHost("myhost")
12 self.assertEqual(host.hostname, "myhost")
  /external/autotest/server/site_tests/android_CrashLogging/
android_CrashLogging.py 12 # Number of seconds to wait for host.run commands to timeout.
24 def run_once(self, host=None):
27 @param host: host object representing the device under test.
29 if host is None:
31 'a host')
32 self.host = host
35 self.host.run('rm /data/tombstones/tombstone_*',
39 result = self.host.run('pgrep %s' % TARGET_PROCESS
    [all...]
  /external/autotest/server/site_tests/bluetooth_AdapterReboot/
bluetooth_AdapterReboot.py 37 self.host.reboot()
39 self.bluetooth_facade = self.ble_adapter(self.host)
49 self.host.reboot()
51 self.bluetooth_facade = self.ble_adapter(self.host)
56 def run_once(self, host, num_iterations=1):
59 @param host: device under test host.
63 self.host = host
65 self.bluetooth_facade = self.ble_adapter(self.host)
    [all...]
  /external/autotest/server/site_tests/enterprise_CFM_AutotestSmokeTest/
enterprise_CFM_AutotestSmokeTest.py 17 def run_once(self, host):
19 factory = remote_facade_factory.RemoteFacadeFactory(host)
  /external/autotest/server/site_tests/enterprise_ClearTPM/
enterprise_ClearTPM.py 13 def run_once(self, host):
15 tpm_utils.ClearTPMOwnerRequest(host)
  /external/autotest/server/site_tests/firmware_FlashServoKeyboardMap/
firmware_FlashServoKeyboardMap.py 19 def run_once(self, host=None):
20 servo = host.servo
21 if host.run('hash dfu-programmer', ignore_status=True).exit_status:
35 result = host.run('lsusb -d 03eb:').stdout.strip()
47 host.send_file(local_path, '/tmp')
49 host.run('dfu-programmer atmega32u4 erase --force')
50 host.run('dfu-programmer atmega32u4 flash /tmp/keyboard.hex')
59 result = host.run('lsusb -d 03eb:').stdout.strip()
  /external/autotest/server/tests/cleanup_test/
cleanup_test.py 7 def execute(self, host):
9 host.cleanup()
  /external/autotest/server/tests/verify_test/
verify_test.py 7 def execute(self, host):
9 host.verify()
  /external/chromium-libpac/test/js-unittest/
ends_with_statement_no_semicolon.js 2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
return_unicode.js 2 function FindProxyForURL(url, host) {
simple.js 4 function FindProxyForURL(url, host) {
12 isInNet(host, "10.0.0.0", "255.0.0.0")) {
16 if (dnsDomainIs(host, "foo.bar.baz.com") || !isResolvable(host)) {
unhandled_exception.js 1 function FindProxyForURL(url, host) {
  /external/clang/
clang.mk 3 CLANG_HOST_BUILD_MK := $(CLANG_ROOT_PATH)/clang-host-build.mk
  /external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/transport/
HttpsServiceConnectionSEIgnoringConnectionClose.java 8 public HttpsServiceConnectionSEIgnoringConnectionClose(String host, int port, String file,
11 super(host, port, file, timeout);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/socket/
DefaultSocketFactory.java 32 * Create a new Socket instance for the specified host and port.
33 * @param host - the IP address of the host endpoint to which the socket is connect
40 public Socket createSocket(InetAddress host, int port) throws IOException {
41 return new Socket(host, port);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/socket/
DefaultSocketFactory.java 32 * Create a new Socket instance for the specified host and port.
33 * @param host - the IP address of the host endpoint to which the socket is connect
40 public Socket createSocket(InetAddress host, int port) throws IOException {
41 return new Socket(host, port);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DelegatingSocketFactory.java 43 public Socket createSocket(String host, int port) throws IOException, UnknownHostException {
44 Socket socket = delegate.createSocket(host, port);
49 public Socket createSocket(String host, int port, InetAddress localAddress, int localPort)
51 Socket socket = delegate.createSocket(host, port, localAddress, localPort);
56 public Socket createSocket(InetAddress host, int port) throws IOException {
57 Socket socket = delegate.createSocket(host, port);
62 public Socket createSocket(InetAddress host, int port, InetAddress localAddress, int localPort)
64 Socket socket = delegate.createSocket(host, port, localAddress, localPort);

Completed in 422 milliseconds

1 2 3 4 56 7 8 91011>>