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

1 2 3 4 5 6 7 8

  /external/ipsec-tools/src/racoon/
throttle.h 40 struct sockaddr_storage host; member in struct:throttle_entry
  /system/extras/tests/bionic/libstdc++/
Android.mk 41 # same as 'device-test' but builds a host executable instead
44 define host-test
71 $(call host-test, $(sources))
76 # host environments don't provide it unless you use specific
  /frameworks/base/core/java/android/net/
Proxy.java 40 * Return the proxy host set by the user.
41 * @param ctx A Context used to get the settings for the proxy host.
42 * @return String containing the host name. If the user did not set a host
43 * name it returns the default host. A null value means that no
44 * host is to be used.
49 String host = Settings.Secure.getString( local
52 if (host != null) {
53 int i = host.indexOf(':');
56 Assert.assertTrue(host.length() == 0)
73 String host = Settings.Secure.getString( local
    [all...]
  /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;
  /external/webkit/WebCore/platform/network/
ProtectionSpace.cpp 50 ProtectionSpace::ProtectionSpace(const String& host, int port, ProtectionSpaceServerType serverType, const String& realm, ProtectionSpaceAuthenticationScheme authenticationScheme)
51 : m_host(host.length() ? host : "")
60 const String& ProtectionSpace::host() const function in class:WebCore::ProtectionSpace
108 if (a.host() != b.host())
  /external/webkit/WebCore/workers/
WorkerLocation.cpp 47 String WorkerLocation::host() const function in class:WebCore::WorkerLocation
49 return m_url.port() ? m_url.host() + ":" + String::number((static_cast<int>(m_url.port()))) : m_url.host();
54 return m_url.host();
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
VoiceDialerReceiver.java 37 String host = intent.getData() != null ? intent.getData().getHost() : null; local
54 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8351".equals(host)) {
60 else if (Intents.SECRET_CODE_ACTION.equals(action) && "8350".equals(host)) {
  /development/ide/emacs/
android-host.el 1 ;;; android-host.el --- Module to use host binaries from an Android dev tree.
24 ;; In your .emacs load this file (e.g (require 'android-host)) then
46 (defvar android-host-command-map (make-sparse-keymap))
48 (defun android-host-key-prefix-set (var val)
52 (define-key global-map (read-kbd-macro val) android-host-command-map)
55 (let ((map android-host-command-map))
62 (defcustom android-host-key-prefix "C-x a"
66 :set 'android-host-key-prefix-set)
121 (provide 'android-host)
    [all...]
  /build/core/combo/
HOST_darwin-x86.mk 37 define transform-host-o-to-shared-lib-inner
51 define transform-host-o-to-executable-inner
  /bionic/libc/private/
resolv_static.h 27 struct hostent host; member in struct:res_static
  /external/apache-http/src/org/apache/http/impl/cookie/
BasicDomainHandler.java 70 // request-host and domain must be identical for the cookie to sent
72 String host = origin.getHost(); local
77 if (host.contains(".")) {
81 // domain must match host
82 if (!host.endsWith(domain)) {
86 if (!host.equals(domain)) {
89 + "\". Domain of origin: \"" + host + "\"");
93 if (!host.equals(domain)) {
96 + "\". Domain of origin: \"" + host + "\"");
108 String host = origin.getHost() local
    [all...]
NetscapeDomainHandler.java 51 String host = origin.getHost(); local
53 if (host.contains(".")) {
98 String host = origin.getHost(); local
103 return host.endsWith(domain);
RFC2109DomainHandler.java 69 String host = origin.getHost(); local
74 if (!domain.equals(host)) {
79 + "\" does not match the host \""
80 + host + "\"");
95 host = host.toLowerCase(Locale.ENGLISH);
96 if (!host.endsWith(domain)) {
99 + "\". Domain of origin: \"" + host + "\"");
101 // host minus domain may not contain any dots
102 String hostWithoutDomain = host.substring(0, host.length() - domain.length())
118 String host = origin.getHost(); local
    [all...]
RFC2965DomainAttributeHandler.java 78 // MAY NOT be an IP address of a host name
87 * Host A's name domain-matches host B's if
89 * <ul>their host name strings string-compare equal; or</ul>
95 * @param host host name where cookie is received from or being sent to.
97 * @return true if the specified host matches the given domain.
99 public boolean domainMatch(String host, String domain) {
100 boolean match = host.equals(domain)
101 || (domain.startsWith(".") && host.endsWith(domain))
117 String host = origin.getHost().toLowerCase(Locale.ENGLISH); local
181 String host = origin.getHost().toLowerCase(Locale.ENGLISH); local
    [all...]
  /external/astl/tests/
Android.mk 29 # generate the right make target (host vs device). $(5) is used in the
30 # module's name to have different name for the host vs device
32 # typically the host libs have a _host suffix in their names.
53 # Compile using the host only on linux for valgrind support.
54 define host-test
84 $(call host-test, $(sources))
  /external/gtest/test/
Android.mk 26 # Gtest depends on STLPort which does not build on host/simulator.
54 # generate the right make target (host vs device). $(4) is used in the
55 # module's name and to have different module names for the host vs
57 # libraries, typically the host libs have a _host suffix in their
80 define host-test
112 $(call host-test, $(sources))
  /external/webkit/WebCore/page/
Location.cpp 77 String Location::host() const function in class:WebCore::Location
83 // "The hostname property is the concatenation of the host and port properties, separated by a colon."
85 return url.port() ? url.host() + ":" + String::number((static_cast<int>(url.port()))) : url.host();
93 return url().host();
UserContentURLPattern.h 47 const String& host() const { return m_host; } function in class:WebCore::UserContentURLPattern
  /external/webkit/WebCore/platform/network/cf/
AuthenticationCF.cpp 171 CFStringRef host = coreSpace.host().createCFString(); local
173 CFURLProtectionSpaceRef result = CFURLProtectionSpaceCreate(0, host, coreSpace.port(), serverType, realm, scheme);
174 CFRelease(host);
  /external/webkit/WebCore/platform/qt/
KURLQt.cpp 52 int host = m_string.find("://"); local
53 if (host != -1) {
54 host += 3;
56 path = m_string.find('/', host);
76 // special case: if this is the host part, don't encode
78 if (host == -1 || (path != -1 && i >= path))
  /external/webkit/WebKit/win/
WebSecurityOrigin.cpp 108 HRESULT STDMETHODCALLTYPE WebSecurityOrigin::host( function in class:WebSecurityOrigin
114 *result = BString(m_securityOrigin->host()).release();
  /system/extras/tests/bionic/libc/
Android.mk 41 # same as 'device-test' but builds a host executable instead
44 define host-test
81 $(call host-test, $(sources))
88 $(call host-test, $(sources))
  /dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/file/
Handler.java 73 String host = url.getHost(); local
74 if (host == null || host.length() == 0
75 || host.equalsIgnoreCase("localhost")) { //$NON-NLS-1$
80 URL ftpURL = new URL("ftp", host, url.getFile()); //$NON-NLS-1$
  /external/apache-http/src/org/apache/http/cookie/
CookieOrigin.java 45 private final String host; field in class:CookieOrigin
50 public CookieOrigin(final String host, int port, final String path, boolean secure) {
52 if (host == null) {
54 "Host of origin may not be null");
56 if (host.trim().length() == 0) {
58 "Host of origin may not be blank");
67 this.host = host.toLowerCase(Locale.ENGLISH);
78 return this.host;
100 buffer.append(this.host);
    [all...]
  /external/openssl/crypto/ocsp/
ocsp_lib.c 162 /* Parse a URL and split it up into host, port and path components and whether
170 char *host, *port; local
206 host = p;
224 if ((p = strchr(host, ':')))
239 *phost = BUF_strdup(host);

Completed in 2797 milliseconds

1 2 3 4 5 6 7 8