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

1 2 3 4 5 6 7 8 9

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicDomainHandler.java 51 throw new MalformedCookieException("Missing value for domain attribute");
54 throw new MalformedCookieException("Blank value for domain attribute");
67 // Validate the cookies domain attribute. NOTE: Domains without
69 // have DNS names. Since they have no dots, to domain-match the
70 // request-host and domain must be identical for the cookie to sent
73 String domain = cookie.getDomain(); local
74 if (domain == null) {
75 throw new MalformedCookieException("Cookie domain may not be null");
79 // A Set-Cookie2 with Domain=ajax.com will be accepted.
81 // domain must match hos
109 String domain = cookie.getDomain(); local
    [all...]
RFC2109DomainHandler.java 53 throw new MalformedCookieException("Missing value for domain attribute");
56 throw new MalformedCookieException("Blank value for domain attribute");
70 String domain = cookie.getDomain(); local
71 if (domain == null) {
72 throw new MalformedCookieException("Cookie domain may not be null");
74 if (!domain.equals(host)) {
75 int dotIndex = domain.indexOf('.');
77 throw new MalformedCookieException("Domain attribute \""
78 + domain
82 // domain must start with do
119 String domain = cookie.getDomain(); local
    [all...]
NetscapeDomainHandler.java 52 String domain = cookie.getDomain(); local
54 int domainParts = new StringTokenizer(domain, ".").countTokens();
56 if (isSpecialDomain(domain)) {
58 throw new MalformedCookieException("Domain attribute \""
59 + domain
65 throw new MalformedCookieException("Domain attribute \""
66 + domain
74 * Checks if the given domain is in one of the seven special
76 * @param domain The domain
99 String domain = cookie.getDomain(); local
    [all...]
RFC2965DomainAttributeHandler.java 44 * <tt>"Domain"</tt> cookie attribute handler for RFC 2965 cookie spec.
57 * Parse cookie domain attribute.
59 public void parse(final SetCookie cookie, String domain)
64 if (domain == null) {
66 "Missing value for domain attribute");
68 if (domain.trim().length() == 0) {
70 "Blank value for domain attribute");
72 domain = domain.toLowerCase(Locale.ENGLISH);
73 if (!domain.startsWith("."))
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/
Mailbox.java 32 private String domain; field in class:Mailbox
37 * @param domain The part of the e-mail address to the right of the "@".
39 public Mailbox(String localPart, String domain) {
40 this(null, localPart, domain);
47 * @param domain The part of the e-mail address to the right of the "@".
49 public Mailbox(DomainList route, String localPart, String domain) {
52 this.domain = domain;
75 return domain;
108 + (domain == null ? "" : "@")
    [all...]
  /external/apache-http/src/org/apache/http/auth/
NTUserPrincipal.java 47 private final String domain; field in class:NTUserPrincipal
51 final String domain,
58 if (domain != null) {
59 this.domain = domain.toUpperCase(Locale.ENGLISH);
61 this.domain = null;
63 if (this.domain != null && this.domain.length() > 0) {
65 buffer.append(this.domain);
79 return this.domain;
    [all...]
  /external/webkit/WebCore/platform/network/android/
ResourceError.h 38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) { }
  /external/webkit/WebCore/platform/network/chromium/
ResourceError.h 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /external/webkit/WebCore/platform/network/curl/
ResourceError.h 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /external/webkit/WebCore/platform/network/qt/
ResourceError.h 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /external/webkit/WebCore/platform/network/soup/
ResourceError.h 40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /bionic/libc/kernel/arch-arm/asm/
pgalloc.h 15 #include <asm/domain.h>
  /external/webkit/WebKit/chromium/public/
WebCookie.h 52 WebCookie(const WebString& name, const WebString& value, const WebString& domain,
56 , domain(domain)
67 WebString domain; member in struct:WebKit::WebCookie
  /frameworks/base/core/java/android/net/http/
CertificateValidatorCache.java 35 * to keep each secure domain name associated with a cryptographically secure
36 * hash of the certificate chain successfully used to validate the domain. If
37 * we establish connection with the domain more than once and each time receive
60 * The certificate validator cache map (domain to a cache entry)
130 * @param domain The domain to check against
133 * associated with the domain and the secure hash
135 public boolean has(String domain, byte[] secureHash) {
138 if (domain != null && domain.length() != 0)
    [all...]
  /ndk/build/platforms/android-3/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /ndk/build/platforms/android-4/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /ndk/build/platforms/android-5/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /ndk/build/platforms/android-8/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
intl.h 36 # define textdomain(domain) (domain)
38 # define bindtextdomain(domain, directory) (domain)
  /external/apache-http/src/org/apache/http/impl/auth/
NTLMEngine.java 45 * Generates a Type1 message given the domain and workstation.
47 * @param domain Optional Windows domain name. Can be <code>null</code>.
54 String domain,
63 * @param domain Windows domain name
72 String domain,
  /external/webkit/WebCore/platform/
Cookie.h 38 Cookie(const String& name, const String& value, const String& domain,
43 , domain(domain)
54 String domain; member in struct:WebCore::Cookie
65 return StringHash::hash(key.name) + StringHash::hash(key.domain) + StringHash::hash(key.path) + key.secure;
70 return a.name == b.name && a.domain == b.domain && a.path == b.path && a.secure == b.secure;
  /external/kernel-headers/original/asm-arm/
domain.h 2 * linux/include/asm-arm/domain.h
14 * Domain numbers
16 * DOMAIN_IO - domain 2 includes all IO only
17 * DOMAIN_USER - domain 1 includes all user memory only
18 * DOMAIN_KERNEL - domain 0 includes all kernel memory only
20 * The domain numbering depends on whether we support 36 physical
23 * be set for domain 0. We could just default to DOMAIN_IO as zero,
44 * Domain types
58 "mcr p15, 0, %0, c3, c0 @ set domain" \
65 unsigned int domain = thread->cpu_domain;
    [all...]
  /external/webkit/WebKit/chromium/src/
WebURLError.cpp 52 domain = error.domain();
64 return ResourceError(domain, reason,
  /external/bluetooth/glib/glib/
gerror.c 34 g_error_new_valist (GQuark domain,
43 error->domain = domain;
52 * @domain: error domain
57 * Creates a new #GError with the given @domain and @code,
63 g_error_new (GQuark domain,
72 g_return_val_if_fail (domain != 0, NULL);
75 error = g_error_new_valist (domain, code, format, args);
83 * @domain: error domai
    [all...]
  /external/e2fsprogs/intl/
loadmsgcat.c 772 struct loaded_domain *domain,
784 domain->codeset_cntr =
787 domain->conv = (__gconv_t) -1;
790 domain->conv = (iconv_t) -1;
793 domain->conv_tab = NULL;
848 if (__gconv_open (outcharset, charset, &domain->conv,
851 domain->conv = (__gconv_t) -1;
868 domain->conv = iconv_open (outcharset, charset);
874 domain->conv = iconv_open (outcharset, charset);
889 _nl_free_domain_conv (struct loaded_domain *domain)
921 struct loaded_domain *domain; local
    [all...]

Completed in 1136 milliseconds

1 2 3 4 5 6 7 8 9