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

1 2 3 4 5 6 7 8 91011>>

  /external/mdnsresponder/mDNSPosix/
nss_mdns.conf 4 domain local
5 domain 254.169.in-addr.arpa
6 domain 8.e.f.ip6.int
7 domain 9.e.f.ip6.int
8 domain a.e.f.ip6.int
9 domain b.e.f.ip6.int
10 domain 8.e.f.ip6.arpa
11 domain 9.e.f.ip6.arpa
12 domain a.e.f.ip6.arpa
13 domain b.e.f.ip6.arp
    [all...]
  /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...]
  /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/mdnsresponder/mDNSShared/
PlatformCommon.h 18 extern void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled);
  /external/webkit/Source/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/Source/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/Source/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/Source/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/Source/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)
  /external/webkit/Source/WebCore/platform/network/win/
ResourceError.h 38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
  /external/guava/guava-tests/test/com/google/common/net/
InternetDomainNameTest.java 50 * A domain part which is valid under lenient validation, but invalid under
216 final InternetDomainName domain = InternetDomainName.from(name); local
217 assertTrue(name, domain.isPublicSuffix());
218 assertTrue(name, domain.hasPublicSuffix());
219 assertFalse(name, domain.isUnderPublicSuffix());
220 assertFalse(name, domain.isTopPrivateDomain());
221 assertEquals(domain, domain.publicSuffix());
225 final InternetDomainName domain = InternetDomainName.from(name); local
226 assertFalse(name, domain.isPublicSuffix())
234 final InternetDomainName domain = InternetDomainName.from(name); local
243 final InternetDomainName domain = InternetDomainName.from(name); local
252 final InternetDomainName domain = InternetDomainName.from(name); local
263 final InternetDomainName domain = InternetDomainName.from(name); local
290 InternetDomainName domain = InternetDomainName.from("foo.com"); local
353 InternetDomainName domain = InternetDomainName.from(inputName); local
373 InternetDomainName domain = InternetDomainName.from("foo.nhs.uk"); local
    [all...]
  /bionic/libc/kernel/arch-arm/asm/
pgalloc.h 21 #include <asm/domain.h>
  /development/ndk/platforms/android-3/arch-arm/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /external/webkit/Source/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
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
intl.h 36 # define textdomain(domain) (domain)
38 # define bindtextdomain(domain, directory) (domain)
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-arm/usr/include/asm/
pgalloc.h 15 #include <asm/domain.h>

Completed in 2129 milliseconds

1 2 3 4 5 6 7 8 91011>>