HomeSort by relevance Sort by last modified time
    Searched full:host (Results 76 - 100 of 10789) sorted by null

1 2 34 5 6 7 8 91011>>

  /build/core/
host_static_test_lib.mk 3 ## Common flags for host native tests are added.
  /external/autotest/cli/
change_protection_level.py 7 from autotest_lib.cli import rpc, host namespace
23 for host in hosts:
25 afe_proxy.run('modify_host', host['id'], protection=protection_level)
27 print 'For host %s:', host['hostname']
30 print 'Host %s succeeded' % host['hostname']
33 print ','.join(set(leftover_args[1:]) - set(host['hostname'] for host in hosts))
  /external/autotest/server/hosts/
__init__.py 7 You should 'import hosts' instead of importing every available host module.
11 # host abstract classes
12 from base_classes import Host
15 # host implementation classes
  /external/autotest/server/site_tests/kernel_EmptyLines/
control 16 printk format strings. It will reboot the host to check the output
21 host = hosts.create_host(machine)
22 job.run_test("kernel_EmptyLines", host=host)
  /external/autotest/server/site_tests/security_kASLR/
control 15 This test reboots the host many times to check kASLR entropy.
19 host = hosts.create_host(machine)
20 job.run_test("security_kASLR", host=host)
  /external/avahi/avahi-utils/
.gitignore 10 avahi-set-host-name
  /external/chromium-libpac/test/js-unittest/
ends_with_statement_no_semicolon.js 2 function FindProxyForURL(url, host) { return "PROXY success:" + x; }
missing_close_brace.js 4 function FindProxyForURL(url, host) {
return_unicode.js 2 function FindProxyForURL(url, host) {
  /external/clang/test/Sema/
attr-endian.c 3 int p1 __attribute__((endian(host))); // expected-warning {{unknown attribute 'endian' ignored}}
  /external/clang/test/SemaOpenCL/
endian-attr.cl 3 constant long a __attribute__((endian(host))) = 100; // 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/v8/tools/gyp/test/toolsets/
toolsets.gyp 15 'toolsets': ['target', 'host'],
21 'target_name': 'host-main',
23 'toolsets': ['host'],
38 # both host and target.
42 'toolsets': ['target', 'host'],
51 'toolsets': ['target', 'host'],
53 # Ensure target and host have different shared_library names
54 ['_toolset=="host"', {'product_extension': 'host'}],
  /ndk/build/tools/
build-llvm.py 28 def get_llvm_prebuilt_path(host):
29 rel_prebuilt_path = 'prebuilts/clang/host/{}'.format(host)
40 host = args.host
47 os_name = host
52 if host == 'darwin':
53 host = 'darwin-x86_64'
54 elif host == 'linux':
55 host = 'linux-x86_64
    [all...]
  /prebuilts/misc/darwin-x86/futility/
PREBUILT 2 the source in external/vboot_reference with build command "make futility-host".
  /prebuilts/misc/linux-x86/futility/
PREBUILT 2 the source in external/vboot_reference with build command "make futility-host".
  /external/conscrypt/src/main/java/org/conscrypt/
ClientSessionContext.java 24 * Caches client sessions. Indexes by host and port. Users are typically
25 * looking to reuse any session for a given host and port.
30 * Sessions indexed by host and port. Protect from concurrent
51 String host = session.getPeerHost(); local
53 if (host == null) {
56 HostAndPort hostAndPortKey = new HostAndPort(host, port);
63 * Finds a cached session for the given host name and port.
65 * @param host of server
69 public SSLSession getSession(String host, int port) {
70 if (host == null)
104 String host = session.getPeerHost(); local
125 final String host; field in class:ClientSessionContext.HostAndPort
    [all...]
  /external/autotest/site_utils/
mass_update.py 37 # Default path for individual host logs. Each host will have it's own file. E.g.
38 # <default_log_path>/<host>.log
63 """Responsible for ssh-test, locking, imaging, and unlocking a host.
65 Uses the atest CLI for host control and the image_to_live script to actually
66 update the host. Each thread will continue to process hosts until the queue
70 _SSH_FAILURE = 1 # Could not SSH to host or related SSH failure.
82 host = self._hosts.popleft()
85 self._logger.info('Updating host %s' % host)
    [all...]
  /external/autotest/client/common_lib/cros/
path_utils.py 11 def get_install_path(filename, host=None):
16 @param host Host object representing the remote machine.
21 if host is not None:
22 run = host.run
33 result = host.run('ls %s 2> /dev/null' % ' '.join(glob_list),
39 def must_be_installed(cmd, host=None):
45 @param host Host object representing the remote machine.
50 if host is not None
    [all...]
  /external/autotest/server/site_tests/generic_RebootTest/
control 17 This server side test checks if a host, specified through the command line,
18 can successfully reboot. It automatically detects the type of the host,
19 creates the appropriate host object, and calls reboot on the host object.
27 Typically, for the case of an adb host, we can send adb commands to the
39 host = hosts.create_host(machine,
43 'Failed to create host for %s: %s. If this is an android host that '
44 'requires a beaglebone jump host, you need to specify the device '
48 job.run_test("generic_RebootTest", host=host, disable_sysinfo=True
    [all...]
  /external/libvncserver/webclients/
index.vnc 25 var host = document.location.hostname;
27 if(host.search(/^.*:.*:.*$/) != -1) {
28 if(host.charAt(0) != "[")
29 host = "[" + host;
30 if(host.charAt(host.length-1) != "]")
31 host = host + "]";
33 open("novnc/vnc_auto.html?host=" + host + "&port=$PORT&true_color=1")
    [all...]
  /external/autotest/scheduler/
prejob_task.py 8 repair will run anytime the host needs a repair, which could be pre or post
12 All prejob tasks must have a host, though they may not have an HQE. If a
15 host=C1, unlocked, is_active=0, is_complete=0, type=Verify
17 of type=Verify, against the C1 host. While the special task is running
22 Host, HQE -> Pending, Starting
28 repair the host
31 set Host, HQE status
37 set Host, HQE status
39 Failing a prejob task effects both the Host and the HQE, as follows:
41 - Host: PreJob failure will result in a Repair job getting queued agains
    [all...]
  /cts/apps/CtsVerifier/res/xml/
access_aid_list.xml 0 <host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android"
6 </host-apdu-service>
felicaservice.xml 0 <host-nfcf-service xmlns:android="http://schemas.android.com/apk/res/android"
5 </host-nfcf-service>
throughput_aid_list.xml 0 <host-apdu-service xmlns:android="http://schemas.android.com/apk/res/android"
6 </host-apdu-service>

Completed in 674 milliseconds

1 2 34 5 6 7 8 91011>>