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

1 2 3 4 5

  /external/bluetooth/glib/glib/
gerror.h 36 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/webkit/Source/WebKit/chromium/public/
WebURLError.h 47 WebString domain; member in struct:WebKit::WebURLError
WebCookie.h 52 WebCookie(const WebString& name, const WebString& value, const WebString& domain,
56 , domain(domain)
67 WebString domain; member in struct:WebKit::WebCookie
  /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...]
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...]
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...]
  /external/chromium/webkit/glue/
webcookie.h 20 const std::string& domain, const std::string& path, double expires,
30 // Cookie domain.
31 std::string domain; member in struct:webkit_glue::WebCookie
  /external/webkit/Source/WebKit/efl/ewk/
ewk_cookies.h 46 /// the "domain" attribute, or else the hostname that the cookie came from
47 char *domain; member in struct:_Ewk_Cookie
  /external/webkit/Source/WebKit2/Shared/
WebError.h 53 const String& domain() const { return m_platformError.domain(); } function in class:WebKit::WebError
  /external/webkit/Source/WebKit2/Shared/gtk/
WebCoreArgumentCodersGtk.cpp 66 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
71 String domain; local
75 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
77 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
  /external/webkit/Source/WebKit2/Shared/qt/
WebCoreArgumentCodersQt.cpp 65 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
70 String domain; local
74 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
76 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
  /external/webkit/Source/WebKit2/Shared/win/
WebCoreArgumentCodersWin.cpp 124 encoder->encode(CoreIPC::In(resourceError.domain(), resourceError.errorCode(), resourceError.failingURL(), resourceError.localizedDescription()));
133 String domain; local
137 if (!decoder->decode(CoreIPC::Out(domain, errorCode, failingURL, localizedDescription)))
148 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription, WebCore::copyCertificateToData(certificateChain.first()).get());
153 resourceError = WebCore::ResourceError(domain, errorCode, failingURL, localizedDescription);
  /frameworks/ex/common/tools/
make-iana-tld-pattern.py 9 * http://data.iana.org/TLD/tlds-alpha-by-domain.txt
20 * http://data.iana.org/TLD/tlds-alpha-by-domain.txt
131 f = urlopen('http://data.iana.org/TLD/tlds-alpha-by-domain.txt')
137 for domain in domains:
138 domain = domain.lower() variable
140 if len(domain) > 0:
141 getBucket(buckets, domain[0]).add(domain.strip())
143 if domain.startswith('xn--')
    [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/chromium/chrome/browser/chromeos/login/
account_creation_view.cc 52 std::string domain; local
58 domain = UTF16ToASCII(form.fields[i].value);
65 delegate_->OnUserCreated(user_name + "@" + domain, "");
  /external/chromium/chrome/browser/resources/
connection_manager.js 23 'domain': location.href,
  /external/chromium/third_party/libjingle/source/talk/xmpp/
jid.h 37 //! A Jid consists of three parts. The node, the domain and the resource.
39 //! node@domain/resource
42 //! a domain. A bare jid is defined to not have a resource and a full jid
76 const std::string & domain() const { return !data_ ? STR_EMPTY : data_->domain_name_; } function in class:buzz::Jid
126 Data(const std::string & node, const std::string &domain, const std::string & resource) :
128 domain_name_(domain),
  /external/webkit/Source/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;
  /packages/apps/Email/emailcommon/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...]
  /device/sample/apps/SampleEmailPolicy/src/com/android/email/policy/
EmailPolicy.java 94 * The only argument (with the key FIND_PROVIDER) is a string containing the domain that the
96 * "MyEmailAddress@gmail.com", the domain will be "gmail.com".
98 * If no server information is provided for this domain, simply return Bundle.EMPTY.
99 * If server information is available for this domain, it can be returned in the following
146 * $domain - the value after the @ signin the email address the user entered
202 * Policy: For a known domain, configure to the servers for that domain
205 String domain = arguments.getString(FIND_PROVIDER); local
206 if (domain != null) {
207 domain = domain.toLowerCase()
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_cookies_unittest.cc 22 const char* domain; member in struct:__anon2712::DomainMatchCase
180 std::string domain; local
201 net::CookieMonster::CanonicalCookie cookie(GURL(), "", "", tests[i].domain,
  /external/chromium/net/base/
transport_security_state.h 31 // A DomainState is the information that we persist about a given domain.
47 // None means there is no HSTS for this domain.
69 std::string domain; // the domain which matched member in struct:net::TransportSecurityState::DomainState
135 // are SHA256(DNSForm(domain)) where DNSForm converts from dotted form
  /external/webkit/Source/WebCore/platform/network/
ResourceErrorBase.h 44 const String& domain() const { lazyInit(); return m_domain; } function in class:WebCore::ResourceErrorBase
62 ResourceErrorBase(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription)
63 : m_domain(domain)
  /external/webkit/Source/WebKit/win/
WebError.cpp 105 /* [in] */ BSTR domain,
109 m_error = ResourceError(String(domain, SysStringLen(domain)), code, String(url, SysStringLen(url)), String());
120 HRESULT STDMETHODCALLTYPE WebError::domain( function in class:WebError
126 *result = BString(m_error.domain()).release();
206 *result = m_error.domain() == String(WebKitErrorDomain)
  /frameworks/base/packages/SharedStorageBackup/src/com/android/sharedstoragebackup/
SharedStorageAgent.java 46 String domain = FullBackup.SHARED_PREFIX + i; local
47 fullBackupFileTree(null, domain, v.getPath(), null, output);
57 int type, String domain, String relpath, long mode, long mtime)
59 if (DEBUG) Slog.d(TAG, "Shared restore: [ " + domain + " : " + relpath + "]");

Completed in 702 milliseconds

1 2 3 4 5