HomeSort by relevance Sort by last modified time
    Searched refs:host (Results 1 - 25 of 1440) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-89443.js 45 function FindProxyForURL(url, host)
48 if (isPlainHostName(host)
49 || dnsDomainIs(host, ".hennepin.lib.mn.us")
50 || dnsDomainIs(host, ".hclib.org")
53 else if (isPlainHostName(host)
57 || dnsDomainIs(host, ".asahi.com")
58 || dnsDomainIs(host, ".2facts.com")
59 || dnsDomainIs(host, ".oclc.org")
60 || dnsDomainIs(host, ".collegesource.com")
61 || dnsDomainIs(host, ".cq.com"
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_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) {
return_object.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 45 private final HttpHost host; field in class:HttpHostConnectException
47 public HttpHostConnectException(final HttpHost host, final ConnectException cause) {
48 super("Connection to " + host + " refused");
49 this.host = host;
54 return this.host;
  /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/webkit/Tools/iExploder/iexploder-1.7.2/tools/
lasthit.rb 43 host = $1
46 if (! hostHash[host])
47 hostHash[host] = Hash.new
49 if (! hostHash[host][agent])
50 hostHash[host][agent] = Hash.new
51 hostHash[host][agent]['total'] = 0
53 hostHash[host][agent]['last'] = test_url
54 hostHash[host][agent]['total'] = hostHash[host][agent]['total'] + 1
55 hostHash[host][agent]['last_line'] = inde
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
CallIdentifier.java 53 * host field
55 protected String host; field in class:CallIdentifier
66 * @param host is the host.
68 public CallIdentifier(String localId, String host) {
70 this.host = host;
93 if (host != null) {
94 buffer.append(AT).append(host);
114 if (this.host == that.host
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/win/
WKBundlePrivateWin.cpp 35 void WKBundleSetHostAllowsAnyHTTPSCertificate(WKBundleRef bundleRef, WKStringRef host)
37 toImpl(bundleRef)->setHostAllowsAnyHTTPSCertificate(toWTFString(host));
40 void WKBundleSetClientCertificate(WKBundleRef bundleRef, WKStringRef host, WKStringRef certificateSystemStoreName, WKCertificateInfoRef certificateInfoRef)
42 toImpl(bundleRef)->setClientCertificate(toWTFString(host), toWTFString(certificateSystemStoreName), toImpl(certificateInfoRef));
  /external/chromium/chrome/browser/ssl/
ssl_host_state.cc 15 void SSLHostState::HostRanInsecureContent(const std::string& host, int pid) {
17 ran_insecure_content_hosts_.insert(BrokenHostEntry(host, pid));
20 bool SSLHostState::DidHostRunInsecureContent(const std::string& host,
23 return !!ran_insecure_content_hosts_.count(BrokenHostEntry(host, pid));
27 const std::string& host) {
30 cert_policy_for_host_[host].Deny(cert);
34 const std::string& host) {
37 cert_policy_for_host_[host].Allow(cert);
41 net::X509Certificate* cert, const std::string& host) {
44 return cert_policy_for_host_[host].Check(cert)
    [all...]
ssl_policy_backend.cc 16 void SSLPolicyBackend::HostRanInsecureContent(const std::string& host, int id) {
17 ssl_host_state_->HostRanInsecureContent(host, id);
21 bool SSLPolicyBackend::DidHostRunInsecureContent(const std::string& host,
23 return ssl_host_state_->DidHostRunInsecureContent(host, pid);
27 const std::string& host) {
28 ssl_host_state_->DenyCertForHost(cert, host);
32 const std::string& host) {
33 ssl_host_state_->AllowCertForHost(cert, host);
37 net::X509Certificate* cert, const std::string& host) {
38 return ssl_host_state_->QueryPolicy(cert, host);
    [all...]
  /external/webkit/Source/WebCore/page/
OriginAccessEntry.cpp 38 OriginAccessEntry::OriginAccessEntry(const String& protocol, const String& host, SubdomainSetting subdomainSetting)
40 , m_host(host.lower())
45 // Assume that any host that ends with a digit is trying to be an IP address.
51 ASSERT(origin.host() == origin.host().lower());
57 // Special case: Include subdomains and empty host means "all hosts, including ip addresses".
62 if (m_host == origin.host())
74 if (origin.host().length() > m_host.length() && origin.host()[origin.host().length() - m_host.length() - 1] == '.' && origin.host().endsWith(m_host)
    [all...]
  /frameworks/support/v4/java/android/support/v4/view/
AccessibilityDelegateCompat.java 34 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host,
36 public void onInitializeAccessibilityEvent(Object delegate, View host,
38 public void onInitializeAccessibilityNodeInfo(Object delegate, View host,
40 public void onPopulateAccessibilityEvent(Object delegate, View host,
42 public boolean onRequestSendAccessibilityEvent(Object delegate, ViewGroup host, View child,
44 public void sendAccessibilityEvent(Object delegate, View host, int eventType);
45 public void sendAccessibilityEventUnchecked(Object delegate, View host,
58 public boolean dispatchPopulateAccessibilityEvent(Object delegate, View host,
63 public void onInitializeAccessibilityEvent(Object delegate, View host,
68 public void onInitializeAccessibilityNodeInfo(Object delegate, View host,
    [all...]
  /external/webkit/LayoutTests/fast/url/script-tests/
relative.js 6 ["http://host/a", "http://another/", "http://another/"],
7 ["http://host/a", "http:////another/", "http://another/"],
18 ["http://host/a", "http:path", "http://host/path"],
19 ["http://host/a/", "http:path", "http://host/a/path"],
20 ["http://host/a", "http:/path", "http://host/path"],
21 ["http://host/a", "HTTP:/path", "http://host/path"]
    [all...]
  /external/chromium/net/base/
ssl_false_start_blacklist.h 18 // IsMember returns true if the given host is in the blacklist.
19 // host: a DNS name in dotted form (i.e. "www.example.com")
20 static bool IsMember(const char* host);
37 // LastTwoLabels returns a pointer within |host| to the last two labels of
38 // |host|. For example, if |host| is "a.b.c.d" then LastTwoLabels will return
40 // host: a DNS name in dotted form.
41 // returns: NULL on error, otherwise a pointer inside |host|.
42 static const char* LastTwoLabels(const char* host) {
44 const size_t len = strlen(host);
    [all...]
  /external/nist-sip/java/gov/nist/core/
HostPort.java 47 // host / ipv4/ ipv6/
48 /** host field
50 protected Host host; field in class:HostPort
61 host = null;
76 host.encode(buffer);
92 return port == that.port && host.equals(that.host);
95 /** get the Host field
96 * @return host fiel
    [all...]
  /frameworks/base/core/java/android/net/http/
RequestFeeder.java 31 Request getRequest(HttpHost host);
34 * @return true if a request for this host is available
36 boolean haveRequest(HttpHost host);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
HopImpl.java 54 protected String host; field in class:HopImpl
65 return host + ":" + port + "/" + transport;
69 * Create new hop given host, port and transport.
75 host = hostName;
79 if(host.indexOf(":") >= 0)
80 if(host.indexOf("[") < 0)
81 host = "[" + host + "]";
90 * @param hop is a hop string in the form of host:port/Transport
104 this.host = hop.substring(0,colon)
    [all...]
  /dalvik/vm/
dalvik 21 ANDROID_ROOT=$ANDROID_BUILD_TOP/out/host/linux-x86 \
22 LD_LIBRARY_PATH=$ANDROID_BUILD_TOP/out/host/linux-x86/lib \
23 $ANDROID_BUILD_TOP/out/host/linux-x86/bin/dalvikvm \
25 :$ANDROID_BUILD_TOP/out/host/linux-x86/framework/core-hostdex.jar\
26 :$ANDROID_BUILD_TOP/out/host/linux-x86/framework/bouncycastle-hostdex.jar\
27 :$ANDROID_BUILD_TOP/out/host/linux-x86/framework/apache-xml-hostdex.jar \
  /external/chromium/chrome/browser/extensions/
alert_apitest.cc 19 ExtensionHost* host = browser()->profile()->GetExtensionProcessManager()-> local
21 ASSERT_TRUE(host);
22 host->render_view_host()->ExecuteJavascriptInWebFrame(string16(),

Completed in 6454 milliseconds

1 2 3 4 5 6 7 8 91011>>