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

1234567891011>>

/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/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) {
63 if (domain[i] < 0 || domain[i] > 63)
69 if (static_cast<unsigned>(domain[i]) + i + 1 > domain.size())
72 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/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/bluetooth/glib/glib/
H A Dgerror.c34 g_error_new_valist (GQuark domain, argument
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, argument
72 g_return_val_if_fail (domain != 0, NULL);
75 error = g_error_new_valist (domain, code, format, args);
83 * @domain
95 g_error_new_literal(GQuark domain, gint code, const gchar *message) argument
166 g_error_matches(const GError *error, GQuark domain, gint code) argument
191 g_set_error(GError **err, GQuark domain, gint code, const gchar *format, ...) argument
230 g_set_error_literal(GError **err, GQuark domain, gint code, const gchar *message) argument
[all...]
H A Dgerror.h36 GQuark domain; member in struct:_GError
41 GError* g_error_new (GQuark domain,
46 GError* g_error_new_literal (GQuark domain,
54 GQuark domain,
57 /* if (err) *err = g_error_new(domain, code, format, ...), also has
61 GQuark domain,
67 GQuark domain,
/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
/external/webkit/Source/WebCore/inspector/
H A DInspectorDatabaseResource.cpp43 PassRefPtr<InspectorDatabaseResource> InspectorDatabaseResource::create(PassRefPtr<Database> database, const String& domain, const String& name, const String& version) argument
45 return adoptRef(new InspectorDatabaseResource(database, domain, name, version));
48 InspectorDatabaseResource::InspectorDatabaseResource(PassRefPtr<Database> database, const String& domain, const String& name, const String& version) argument
51 , m_domain(domain)
61 jsonObject->setString("domain", m_domain);
H A DInspectorDatabaseInstrumentation.h41 inline void InspectorInstrumentation::didOpenDatabase(ScriptExecutionContext* context, PassRefPtr<Database> database, const String& domain, const String& name, const String& version) argument
45 didOpenDatabaseImpl(inspectorAgent, database, domain, name, version);
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dudhcpd-p2p.conf88 option domain atherosowl.com
103 #opt domain

Completed in 5396 milliseconds

1234567891011>>