Searched refs:domain (Results 1 - 25 of 332) sorted by relevance

1234567891011>>

/external/mdnsresponder/mDNSPosix/
H A Dnss_mdns.conf4 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
[all...]
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicDomainHandler.java51 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();
74 if (domain == null) {
75 throw new MalformedCookieException("Cookie domain may not be null");
81 // domain must match host
82 if (!host.endsWith(domain)) {
[all...]
H A DRFC2109DomainHandler.java53 throw new MalformedCookieException("Missing value for domain attribute");
56 throw new MalformedCookieException("Blank value for domain attribute");
70 String domain = cookie.getDomain();
71 if (domain == null) {
72 throw new MalformedCookieException("Cookie domain may not be null");
74 if (!domain.equals(host)) {
75 int dotIndex = domain.indexOf('.');
78 + domain
82 // domain must start with dot
83 if (!domain
[all...]
H A DNetscapeDomainHandler.java52 String domain = cookie.getDomain();
54 int domainParts = new StringTokenizer(domain, ".").countTokens();
56 if (isSpecialDomain(domain)) {
59 + domain
66 + domain
74 * Checks if the given domain is in one of the seven special
76 * @param domain The domain.
77 * @return True if the specified domain is "special"
79 private static boolean isSpecialDomain(final String domain) { argument
[all...]
H A DRFC2965DomainAttributeHandler.java57 * Parse cookie domain attribute.
59 public void parse(final SetCookie cookie, String domain) argument
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(".")) {
77 // That effectively implies that the domain attribut
99 domainMatch(String host, String domain) argument
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DNTUserPrincipal.java47 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;
50 NTUserPrincipal( final String domain, final String username) argument
[all...]
/external/mdnsresponder/mDNSShared/
H A DPlatformCommon.h18 extern void ReadDDNSSettingsFromConfFile(mDNS *const m, const char *const filename, domainname *const hostname, domainname *const domain, mDNSBool *DomainDiscoveryDisabled);
/external/guava/guava-tests/test/com/google/common/net/
H A DInternetDomainNameTest.java50 * A domain part which is valid under lenient validation, but invalid under
216 final InternetDomainName domain = InternetDomainName.from(name);
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);
226 assertFalse(name, domain
391 idn(String domain) argument
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebCookie.h52 WebCookie(const WebString& name, const WebString& value, const WebString& domain, argument
56 , domain(domain)
67 WebString domain; member in struct:WebKit::WebCookie
/external/apache-http/src/org/apache/http/impl/auth/
H A DNTLMEngine.java45 * 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,
53 generateType1Msg( String domain, String workstation) argument
69 generateType3Msg( String username, String password, String domain, String workstation, String challenge) argument
/external/webkit/Source/WebCore/platform/network/android/
H A DResourceError.h38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription) { }
/external/webkit/Source/WebCore/platform/network/chromium/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/curl/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/qt/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/soup/
H A DResourceError.h40 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
41 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/webkit/Source/WebCore/platform/network/win/
H A DResourceError.h38 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
39 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
/external/chromium/net/base/
H A Ddns_util.cc11 // Based on DJB's public domain code.
59 std::string DNSDomainToString(const std::string& domain) { argument
62 for (unsigned i = 0; i < domain.size() && domain[i]; i += domain[i] + 1) {
64 if (domain[i] < 0)
67 if (domain[i] > 63)
73 if (static_cast<unsigned>(domain[i]) + i + 1 > domain.size())
76 ret += domain
[all...]
/external/chromium/net/tools/tld_cleanup/
H A Dtld_cleanup.cc22 // * Canonicalizes each rule's domain by converting it to a GURL and back.
52 // Writes the list of domain rules contained in the 'rules' set to the
103 NormalizeResult NormalizeRule(std::string* domain, Rule* rule) { argument
107 if (domain->at(0) == '.')
108 domain->erase(0, 1);
109 if (domain->empty()) {
113 if (domain->at(domain->size() - 1) == '.')
114 domain->erase(domain
174 std::string domain; local
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularContiguousSet.java37 RegularContiguousSet(Range<C> range, DiscreteDomain<C> domain) { argument
38 super(domain);
45 .asSet(domain);
50 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
57 toElement, BoundType.forBoolean(toInclusive))).asSet(domain);
63 .asSet(domain);
72 return equalsOrThrow(previous, last) ? null : domain.next(previous);
86 return range.lowerBound.leastValueAbove(domain);
90 return range.upperBound.greatestValueBelow(domain);
94 long distance = domain
[all...]
/external/webkit/Source/WebCore/platform/
H A DCookie.h38 Cookie(const String& name, const String& value, const String& domain, argument
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/
H A Ddomain.h2 * linux/include/asm-arm/domain.h
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,
58 "mcr p15, 0, %0, c3, c0 @ set domain" \
65 unsigned int domain = thread->cpu_domain; \
66 domain &= ~domain_val(dom, DOMAIN_MANAGER); \
67 thread->cpu_domain = domain | domain_va
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebURLError.cpp52 domain = error.domain();
64 return ResourceError(domain, reason,
/external/guava/guava/src/com/google/common/collect/
H A DCut.java49 abstract Cut<C> withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain); argument
50 abstract Cut<C> withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain); argument
55 abstract C leastValueAbove(DiscreteDomain<C> domain); argument
56 abstract C greatestValueBelow(DiscreteDomain<C> domain); argument
62 Cut<C> canonical(DiscreteDomain<C> domain) { argument
132 DiscreteDomain<Comparable<?>> domain) {
136 DiscreteDomain<Comparable<?>> domain) {
146 DiscreteDomain<Comparable<?>> domain) {
147 return domain.minValue();
150 DiscreteDomain<Comparable<?>> domain) {
131 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
135 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
145 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
149 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
153 canonical( DiscreteDomain<Comparable<?>> domain) argument
197 withLowerBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
201 withUpperBoundType(BoundType boundType, DiscreteDomain<Comparable<?>> domain) argument
211 leastValueAbove( DiscreteDomain<Comparable<?>> domain) argument
215 greatestValueBelow( DiscreteDomain<Comparable<?>> domain) argument
246 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
257 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
274 leastValueAbove(DiscreteDomain<C> domain) argument
277 greatestValueBelow(DiscreteDomain<C> domain) argument
304 withLowerBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
315 withUpperBoundType(BoundType boundType, DiscreteDomain<C> domain) argument
332 leastValueAbove(DiscreteDomain<C> domain) argument
335 greatestValueBelow(DiscreteDomain<C> domain) argument
338 canonical(DiscreteDomain<C> domain) argument
[all...]
/external/e2fsprogs/intl/
H A Dloadmsgcat.c772 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) argument
771 _nl_init_domain_conv(struct loaded_l10nfile *domain_file, struct loaded_domain *domain, struct binding *domainbinding) argument
921 struct loaded_domain *domain; local
1400 _nl_unload_domain(struct loaded_domain *domain) argument
[all...]
/external/chromium/webkit/glue/
H A Dwebcookie.cc19 domain(c.Domain()),
28 const std::string& domain, const std::string& path,
32 domain(domain),
27 WebCookie(const std::string& name, const std::string& value, const std::string& domain, const std::string& path, double expires, bool http_only, bool secure, bool session) argument

Completed in 317 milliseconds

1234567891011>>