Searched defs:domain (Results 1 - 25 of 151) sorted by relevance

1234567

/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/webkit/Source/WebKit/chromium/public/
H A DWebURLError.h47 WebString domain; member in struct:WebKit::WebURLError
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/webkit/Source/WebCore/inspector/
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);
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);
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceError.h52 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription) argument
53 : ResourceErrorBase(domain, errorCode, failingURL, localizedDescription)
65 ResourceError(const String& domain, int errorCode, const String& failingURL, const String& localizedDescription, CFDataRef certificate);
/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...]
H A DNTCredentials.java61 * @param usernamePassword the domain/username:password formed string
92 * @param userName The user name. This should not include the domain to authenticate with.
97 * @param domain The domain to authenticate within.
103 final String domain) {
108 this.principal = new NTUserPrincipal(domain, userName);
132 * @return String the domain these credentials are intended to authenticate with.
99 NTCredentials( final String userName, final String password, final String workstation, final String domain) argument
/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/apache-http/src/org/apache/http/impl/cookie/
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/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
H A Dwebcookie.h20 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/
H A Dewk_cookies.h46 /// 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/
H A DWebError.h53 const String& domain() const { return m_platformError.domain(); } function in class:WebKit::WebError
/external/webkit/Source/WebKit2/Shared/gtk/
H A DWebCoreArgumentCodersGtk.cpp66 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/
H A DWebCoreArgumentCodersQt.cpp65 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/apache-http/src/org/apache/http/cookie/
H A DSetCookie.java72 * Sets the domain attribute.
74 * @param domain The value of the domain attribute
78 void setDomain(String domain); argument
/external/chromium/chrome/browser/resources/
H A Dconnection_manager.js23 'domain': location.href,
/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...]

Completed in 1456 milliseconds

1234567