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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/
SchemeRegistry.cpp 107 void SchemeRegistry::registerURLSchemeAsLocal(const String& scheme)
109 localURLSchemes().add(scheme);
112 void SchemeRegistry::removeURLSchemeRegisteredAsLocal(const String& scheme)
114 if (scheme == "file")
117 if (scheme == "applewebdata")
120 localURLSchemes().remove(scheme);
128 bool SchemeRegistry::shouldTreatURLSchemeAsLocal(const String& scheme)
130 if (scheme.isEmpty())
132 return localURLSchemes().contains(scheme);
135 void SchemeRegistry::registerURLSchemeAsNoAccess(const String& scheme)
    [all...]
SchemeRegistry.h 55 // SecurityOrigin::canDisplay) by documents from the same scheme.
64 static bool canDisplayOnlyIfCanRequest(const String& scheme);
65 static void registerAsCanDisplayOnlyIfCanRequest(const String& scheme);
  /libcore/luni/src/main/java/libcore/net/http/
Challenge.java 25 final String scheme; field in class:Challenge
28 public Challenge(String scheme, String realm) {
29 this.scheme = scheme;
35 && ((Challenge) o).scheme.equals(scheme)
40 return scheme.hashCode() + 31 * realm.hashCode();
44 return "Challenge[" + scheme + " " + realm + "]";
  /external/webkit/Source/WebKit/chromium/src/
WebSecurityPolicy.cpp 45 void WebSecurityPolicy::registerURLSchemeAsLocal(const WebString& scheme)
47 SchemeRegistry::registerURLSchemeAsLocal(scheme);
50 void WebSecurityPolicy::registerURLSchemeAsNoAccess(const WebString& scheme)
52 SchemeRegistry::registerURLSchemeAsNoAccess(scheme);
55 void WebSecurityPolicy::registerURLSchemeAsDisplayIsolated(const WebString& scheme)
57 SchemeRegistry::registerURLSchemeAsDisplayIsolated(scheme);
60 void WebSecurityPolicy::registerURLSchemeAsSecure(const WebString& scheme)
62 SchemeRegistry::registerURLSchemeAsSecure(scheme);
  /external/chromium/net/proxy/
proxy_server_mac.cc 18 ProxyServer ProxyServer::FromDictionary(Scheme scheme,
22 if (scheme == SCHEME_INVALID || scheme == SCHEME_DIRECT) {
24 return ProxyServer(scheme, HostPortPair());
45 port = GetDefaultPortForScheme(scheme);
48 return ProxyServer(scheme, HostPortPair(host, port));
proxy_server.h 27 enum Scheme {
41 ProxyServer(Scheme scheme, const HostPortPair& host_port_pair);
45 // Gets the proxy's scheme (i.e. SOCKS4, SOCKS5, HTTP)
46 Scheme scheme() const { return scheme_; } function in class:net::ProxyServer
65 // [<scheme>"://"]<server>[":"<port>]
67 // Both <scheme> and <port> are optional. If <scheme> is omitted, it will be
69 // the default port for the chosen scheme (80 for "http", 1080 for "socks")
    [all...]
proxy_server.cc 18 // Parses the proxy type from a PAC string, to a ProxyServer::Scheme.
21 ProxyServer::Scheme GetSchemeFromPacTypeInternal(
44 // Parses the proxy scheme from a URL-like representation, to a
45 // ProxyServer::Scheme. This corresponds with the values used in
47 ProxyServer::Scheme GetSchemeFromURIInternal(std::string::const_iterator begin,
74 ProxyServer::ProxyServer(Scheme scheme, const HostPortPair& host_port_pair)
75 : scheme_(scheme), host_port_pair_(host_port_pair) {
86 // Doesn't make sense to call this if the URI scheme doesn't
94 Scheme default_scheme)
103 Scheme scheme = default_scheme; local
165 Scheme scheme = GetSchemeFromPacTypeInternal(begin, space); local
    [all...]
  /bootable/diskinstaller/
installer_img_layout.conf 2 scheme mbr
android_img_system_layout.conf 2 scheme mbr
  /external/chromium/net/base/
auth.cc 15 this->scheme == that.scheme &&
auth.h 33 std::wstring scheme; // "Basic", "Digest", or whatever other method is used. member in class:net::AuthChallengeInfo
52 std::wstring scheme; // the authentication scheme. member in class:net::AuthData
  /external/chromium/net/url_request/
url_request_filter.cc 19 const std::string& scheme) {
21 return GetInstance()->FindRequestHandler(request, scheme);
31 void URLRequestFilter::AddHostnameHandler(const std::string& scheme,
33 hostname_handler_map_[make_pair(scheme, hostname)] = factory;
36 URLRequest::RegisterProtocolFactory(scheme, &URLRequestFilter::Factory);
44 hostname_handler_map_.find(make_pair(url.scheme(), url.host()));
51 void URLRequestFilter::RemoveHostnameHandler(const std::string& scheme,
54 hostname_handler_map_.find(make_pair(scheme, hostname));
59 // this would left no protocol factory for the scheme.
72 URLRequest::RegisterProtocolFactory(url.scheme(),
    [all...]
url_request_filter.h 6 // rather than just the scheme. Example usage:
36 // scheme,hostname -> ProtocolFactory
49 void AddHostnameHandler(const std::string& scheme,
52 void RemoveHostnameHandler(const std::string& scheme,
74 const std::string& scheme);
url_request_job_manager.cc 27 const char* scheme; member in struct:net::__anon4242::SchemeToFactory
55 // If we are given an invalid URL, then don't even try to inspect the scheme.
60 const std::string& scheme = request->url().scheme(); // already lowercase local
61 if (!SupportsScheme(scheme))
81 FactoryMap::const_iterator i = factories_.find(scheme);
83 URLRequestJob* job = i->second(request, scheme);
90 if (scheme == kBuiltinFactories[i].scheme) {
91 URLRequestJob* job = (kBuiltinFactories[i].factory)(request, scheme);
    [all...]
  /external/webkit/Source/WebCore/platform/network/cf/
AuthenticationCF.cpp 153 CFURLProtectionSpaceAuthenticationScheme scheme = kCFURLProtectionSpaceAuthenticationSchemeDefault; local
156 scheme = kCFURLProtectionSpaceAuthenticationSchemeDefault;
159 scheme = kCFURLProtectionSpaceAuthenticationSchemeHTTPBasic;
162 scheme = kCFURLProtectionSpaceAuthenticationSchemeHTTPDigest;
165 scheme = kCFURLProtectionSpaceAuthenticationSchemeHTMLForm;
168 scheme = kCFURLProtectionSpaceAuthenticationSchemeNTLM;
171 scheme = kCFURLProtectionSpaceAuthenticationSchemeNegotiate;
179 CFURLProtectionSpaceRef result = CFURLProtectionSpaceCreate(0, host, coreSpace.port(), serverType, realm, scheme);
240 ProtectionSpaceAuthenticationScheme scheme = ProtectionSpaceAuthenticationSchemeDefault; local
244 scheme = ProtectionSpaceAuthenticationSchemeDefault
    [all...]
  /external/apache-http/src/org/apache/http/auth/
AuthScope.java 39 * a port number, a realm name and an authentication scheme name which
66 * The <tt>null</tt> value represents any authentication scheme.
71 * Default scope matching any host, port, realm and authentication scheme.
77 /** The authentication scheme the credentials apply to. */
78 private final String scheme; field in class:AuthScope
91 * <tt>authentication scheme</tt>.
102 * @param scheme the authentication scheme the credentials apply to.
104 * any authentication scheme.
107 final String realm, final String scheme)
    [all...]
  /external/apache-http/src/org/apache/http/conn/scheme/
HostNameResolver.java 32 package org.apache.http.conn.scheme;
  /external/chromium/net/socket_stream/
socket_stream_job_manager.cc 32 const std::string& scheme = url.scheme(); // already lowercase local
35 FactoryMap::const_iterator found = factories_.find(scheme);
48 const std::string& scheme, SocketStreamJob::ProtocolFactory* factory) {
52 FactoryMap::iterator found = factories_.find(scheme);
59 factories_[scheme] = factory;
  /external/chromium/googleurl/src/
url_canon_stdurl.cc 46 // Scheme: this will append the colon.
47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme,
48 output, &new_parsed->scheme);
56 // Only write the authority separators when we have a scheme.
57 if (parsed.scheme.is_valid()) {
78 &output->data()[new_parsed->scheme.begin], new_parsed->scheme.len);
120 // Returns the default port for the given canonical scheme, or PORT_UNSPECIFIED
121 // if the scheme is unknown
    [all...]
  /external/chromium/chrome/browser/content_settings/
content_settings_pattern.h 54 std::string scheme() const { function in class:ContentSettingsPattern
69 // refactoring pending to fully integrate scheme support in content settings
71 ContentSettingsPattern(const std::string& host, const std::string& scheme)
73 scheme_(scheme) {}
78 // to do to add scheme support to content-settings patterns.
  /external/chromium/chrome/browser/custom_handlers/
protocol_handler_registry.h 46 ProtocolHandler* GetHandlerFor(const std::string& scheme) const;
49 // scheme.
50 bool CanSchemeBeOverridden(const std::string& scheme) const;
58 const std::string& scheme);
  /external/webkit/Source/WebKit/qt/Api/
qwebsecurityorigin.h 40 static void addLocalScheme(const QString& scheme);
41 static void removeLocalScheme(const QString& scheme);
46 QString scheme() const;
  /external/chromium/chrome/browser/
external_protocol_handler.h 23 // Returns whether we should block a given scheme.
24 static BlockState GetBlockState(const std::string& scheme);
26 // Sets whether we should block a given scheme.
27 static void SetBlockState(const std::string& scheme, BlockState state);
  /external/chromium/webkit/glue/
password_form.cc 10 : scheme(SCHEME_HTML),
17 : scheme(SCHEME_HTML),
  /external/webkit/Source/WebCore/html/
HTMLMetaElement.idl 26 attribute [Reflect] DOMString scheme;

Completed in 470 milliseconds

1 2 3 4 5 6 7 8 91011>>