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

1 2 3 4 5 67 8 91011>>

  /external/python/cpython2/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...]
  /frameworks/base/core/java/org/apache/http/conn/ssl/
BrowserCompatHostnameVerifier.java 56 final String host,
59 verify(host, cns, subjectAlts, false);
StrictHostnameVerifier.java 63 final String host,
66 verify(host, cns, subjectAlts, true);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/doze/
DozeBrightnessHostForwarder.java 26 public DozeBrightnessHostForwarder(DozeMachine.Service wrappedService, DozeHost host) {
28 mHost = host;
  /frameworks/ml/nn/driver/cache/
Android.bp 39 host: {
  /libcore/ojluni/src/main/java/java/net/
ProtocolException.java 46 * @param host the detail message.
48 public ProtocolException(String host) {
49 super(host);
  /test/framework/harnesses/host_controller/command_processor/
command_list.py 34 """Shows a list of host controllers.
40 for ind, host in enumerate(hosts):
41 self.console._Print("[%3d] %s" % (ind, host.hostname))
57 "--host", type=int, help="The index of the host.")
67 if args.host is None:
70 hosts = [(args.host, self.console._hosts[args.host])]
74 for ind, host in hosts:
75 devices = host.ListDevices(
    [all...]
  /test/vts/script/
run-gce.sh 19 export TARGET_IP=127.0.0.1; export TARGET_PORT=$1; export PYTHONPATH=$PYTHONPATH:..; python -m vts.testcases.host.sample.SampleTestcase
  /external/autotest/server/site_tests/platform_ImageLoaderServer/
platform_ImageLoaderServer.py 31 def run_once(self, host):
33 self.host = host
34 self.autotest_client = autotest.Autotest(self.host)
76 self.host.send_file(version1, version1)
77 self.host.send_file(version2, version2)
78 self.host.send_file(version3, version3)
80 self.host.run('tar xvf "%s" -C "%s"' % (version1, '/home/chronos'))
81 self.host.run('tar xvf "%s" -C "%s"' % (version2, '/home/chronos'))
82 self.host.run('tar xvf "%s" -C "%s"' % (version3, '/home/chronos')
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
RecyclerViewAccessibilityDelegate.java 47 public boolean performAccessibilityAction(View host, int action, Bundle args) {
48 if (super.performAccessibilityAction(host, action, args)) {
59 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
60 super.onInitializeAccessibilityNodeInfo(host, info);
68 public void onInitializeAccessibilityEvent(View host, AccessibilityEvent event) {
69 super.onInitializeAccessibilityEvent(host, event);
71 if (host instanceof RecyclerView && !shouldIgnore()) {
72 RecyclerView rv = (RecyclerView) host;
110 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfoCompat info) {
111 super.onInitializeAccessibilityNodeInfo(host, info)
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/
CameraPreview.java 53 private final CameraPreviewHost host; field in class:CameraPreview
55 public CameraPreview(final CameraPreviewHost host) {
56 Assert.isNotNull(host);
57 Assert.isNotNull(host.getView());
58 this.host = host;
70 boolean visible = host.getView().getVisibility() == View.VISIBLE;
89 host.getView().requestLayout();
131 return host.getView().getContext();
136 host.getView().setOnTouchListener(listener)
    [all...]
  /toolchain/binutils/binutils-2.27/binutils/testsuite/binutils-all/arm/
objdump.exp 25 if {![is_remote host] && [which $OBJDUMP] == 0} then {
40 if [is_remote host] {
41 set objfile [remote_download host tmpdir/thumb2-cond.o]
76 if [is_remote host] {
77 set objfile [remote_download host tmpdir/simple.o]
98 if [is_remote host] {
99 set objfile [remote_download host tmpdir/rvct_symbol.o]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
finger.py 5 # Usage: finger [options] [user][@host] ...
7 # If no host is given, the finger daemon on the local host is contacted.
24 def finger(host, args):
26 s.connect((host, FINGER_PORT))
49 host = arg[at+1:]
52 host = ''
53 finger(host, options + arg)
rpython.py 15 print "usage: rpython host command"
17 host = sys.argv[1]
19 i = string.find(host, ':')
22 host = host[:i]
25 s.connect((host, port))
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 38 * The class represents an authentication scope consisting of a host name,
55 * The <tt>null</tt> value represents any host. In the future versions of
76 * Default scope matching any host, port, realm and authentication scheme.
88 /** The host the credentials apply to. */
89 private final String host; field in class:AuthScope
95 * <tt>host</tt>, <tt>port</tt>, <tt>realm</tt>, and
98 * @param host the host the credentials apply to. May be set
100 * any host.
111 public AuthScope(final String host, int port,
    [all...]
  /external/autotest/server/cros/
autoupdate_utils.py 13 def get_updater_from_repo_url(host, job_repo_url=None):
17 assigned to their host that is associated with the version of the build that
26 @param host: The host for the DUT of the server-side test.
32 # specified in the host attributes for the host.
34 info = host.host_info_store.get()
35 job_repo_url = info.attributes.get(host.job_repo_url_attribute, '')
38 'Could not find a job_repo_url for the given host.')
48 host=host
    [all...]
  /external/autotest/server/cros/clique_lib/
clique_dut_log_collector.py 25 host = dut.host
26 # Set the job on the host object for log collection.
27 host.job = job
28 logging.info("Collecting logs from: %s", host.hostname)
29 crashcollect.get_crashinfo(host, 0)
  /external/autotest/server/cros/network/
lucid_sleep_test_base.py 22 def initialize(self, host):
23 super(LucidSleepTestBase, self).initialize(host)
24 self._dr_utils = dark_resume_utils.DarkResumeUtils(host)
27 def warmup(self, host, raw_cmdline_args, additional_params=None):
29 host, raw_cmdline_args, additional_params)
  /external/autotest/server/hosts/
base_label.py 19 We'll check if the label already exists on the host and return True if so.
20 Otherwise we'll check if the label should exist on the host.
24 def exists_wrapper(self, host):
29 @param host: The host object to run methods on.
31 @returns True if the label already exists on the host, otherwise run
34 info = host.host_info_store.get()
35 return (self._NAME in info.labels) or exists(self, host)
41 This class contains the scaffolding for the host-specific labels.
64 def generate_labels(self, host)
    [all...]
  /external/clang/
update-prebuilts.py 57 def host_to_build_host(host):
58 """Gets the build host name for an NDK host tag.
66 }[host]
69 def build_name(host):
70 """Gets the build name for a given host.
79 }[host]
91 def package_name(build_number, host):
97 return 'clang-{}-{}-x86.tar.bz2'.format(build_number, host)
100 def download_build(host, build_number, download_dir)
    [all...]
  /external/python/cpython2/Demo/sockets/
finger.py 5 # Usage: finger [options] [user][@host] ...
7 # If no host is given, the finger daemon on the local host is contacted.
24 def finger(host, args):
26 s.connect((host, FINGER_PORT))
49 host = arg[at+1:]
52 host = ''
53 finger(host, options + arg)
rpython.py 15 print "usage: rpython host command"
17 host = sys.argv[1]
19 i = string.find(host, ':')
22 host = host[:i]
25 s.connect((host, port))
  /external/python/cpython3/Tools/demo/
rpython.py 16 print("usage: rpython host command")
18 host = sys.argv[1]
20 i = host.find(':')
23 host = host[:i]
26 s.connect((host, port))
  /libcore/ojluni/src/main/java/sun/net/util/
URLUtil.java 55 String host = url.getHost(); local
56 if (host != null) {
57 /* host is compared case-insensitive, so convert to lowercase */
58 host = host.toLowerCase();
59 strForm.append(host);
  /libcore/ojluni/src/main/java/sun/security/x509/
URIName.java 44 * address as the host.
47 * (e.g., "http" is equivalent to "HTTP"). The host part is also not
50 * MUST compare the scheme and host without regard to case, but assume
63 * of an IP-based protocol to a specified host on the Internet use a
66 * //<user>:<password>@<host>:<port>/<url-path>
85 private String host; field in class:URIName
115 host = uri.getHost();
116 // RFC 3280 says that the host should be non-null, but we allow it to
120 if (host != null) {
121 if (host.charAt(0) == '[')
165 String host = uri.getSchemeSpecificPart(); local
    [all...]

Completed in 491 milliseconds

1 2 3 4 5 67 8 91011>>