Searched refs:scheme (Results 51 - 75 of 382) sorted by relevance

1234567891011>>

/external/chromium/net/http/
H A Dhttp_auth_cache.cc71 HttpAuth::Scheme scheme) {
77 it->scheme() == scheme)
113 HttpAuth::Scheme scheme,
122 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
134 entry->scheme_ = scheme;
138 DCHECK_EQ(scheme, entry->scheme_);
201 HttpAuth::Scheme scheme,
206 it->scheme() == scheme) {
69 Lookup(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme) argument
111 Add(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge, const string16& username, const string16& password, const std::string& path) argument
199 Remove(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const string16& username, const string16& password) argument
217 UpdateStaleChallenge(const GURL& origin, const std::string& realm, HttpAuth::Scheme scheme, const std::string& auth_challenge) argument
[all...]
H A Dhttp_auth_handler_factory.cc74 const std::string& scheme) {
76 supported_schemes.begin(), supported_schemes.end(), scheme);
91 const std::string& scheme,
93 HttpAuthHandlerFactory* factory = GetSchemeFactory(scheme);
99 const std::string& scheme,
101 std::string lower_scheme = StringToLowerASCII(scheme);
113 const std::string& scheme) const {
114 std::string lower_scheme = StringToLowerASCII(scheme);
117 return NULL; // |scheme| is not registered.
175 std::string scheme local
73 IsSupportedScheme(const std::vector<std::string>& supported_schemes, const std::string& scheme) argument
90 SetURLSecurityManager( const std::string& scheme, URLSecurityManager* security_manager) argument
98 RegisterSchemeFactory( const std::string& scheme, HttpAuthHandlerFactory* factory) argument
[all...]
H A Dhttp_auth_handler_factory.h58 // If |*challenge| specifies an unsupported authentication scheme, |*handler|
68 // scheme, and indicates the number of handlers generated for a particular
128 // to other factories based on the auth scheme.
135 // Sets an URL security manager into the factory associated with |scheme|.
136 void SetURLSecurityManager(const std::string& scheme,
140 // authentication scheme such as Basic, Digest, or Negotiate.
145 // for |scheme|. If a factory object used to exist for |scheme|, it will be
147 void RegisterSchemeFactory(const std::string& scheme,
150 // Retrieve the factory for the specified |scheme|
[all...]
/external/chromium/net/socket_stream/
H A Dsocket_stream_job.cc16 const std::string& scheme, ProtocolFactory* factory) {
18 scheme, factory);
28 if (url.scheme() == "ws" &&
15 RegisterProtocolFactory( const std::string& scheme, ProtocolFactory* factory) argument
H A Dsocket_stream_job_manager.h29 const std::string& scheme, SocketStreamJob::ProtocolFactory* factory);
/external/chromium/net/url_request/
H A Durl_request_filter.h6 // 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);
H A Durl_request_data_job.cc19 const std::string& scheme) {
18 Factory(URLRequest* request, const std::string& scheme) argument
/external/nist-sip/java/gov/nist/javax/sip/address/
H A DGenericURI.java60 protected String scheme; field in class:GenericURI
75 scheme = uriString.substring(0, i);
100 /** Returns the value of the "scheme" of
103 * @return the scheme paramter of the URI
106 return scheme;
109 /** This method determines if this is a URI with a scheme of
112 * @return true if the scheme is "sip" or "sips", false otherwise.
/external/webkit/Source/JavaScriptCore/wtf/url/src/
H A DURLSegments.cpp52 return scheme.begin();
55 if (scheme.isValid())
56 current = scheme.end() + 1; // Advance over the ':' at the end of the scheme.
H A DURLParser.h94 static bool extractScheme(const CHAR* spec, int specLength, URLComponent& scheme) argument
106 scheme = URLComponent::fromRange(begin, i);
110 return false; // No colon found: no scheme
114 // scheme) for standard URLs.
117 // |afterScheme| is the character immediately following the scheme (after
146 // The main parsing function for standard URLs. Standard URLs have a scheme,
157 if (extractScheme(spec, specLength, parsed.scheme))
158 afterScheme = parsed.scheme.end() + 1; // Skip past the colon.
160 // Say there's no scheme when there is a colon. We could also say
161 // that everything is the scheme
[all...]
/external/webkit/Source/WebCore/page/
H A DNavigator.cpp251 static bool verifyProtocolHandlerScheme(const String& scheme, ExceptionCode& ec) argument
254 if (equalIgnoringCase(scheme, "http") || equalIgnoringCase(scheme, "https") || equalIgnoringCase(scheme, "file")) {
261 void Navigator::registerProtocolHandler(const String& scheme, const String& url, const String& title, ExceptionCode& ec) argument
263 if (!verifyProtocolHandlerScheme(scheme, ec))
282 page->chrome()->registerProtocolHandler(scheme, baseURL, url, m_frame->displayStringModifiedByEncoding(title));
/external/chromium/chrome/browser/net/
H A Durl_fixer_upper.cc58 parts->scheme =
59 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.scheme);
339 // Try to extract a valid scheme from the beginning of |text|.
340 // If successful, set |scheme_component| to the text range where the scheme
351 // Make sure the scheme contains only valid characters, and convert
371 // will add an HTTP scheme later and make the URL parser happy.
401 std::string scheme;
402 if (!GetValidScheme(text, &parts->scheme, &scheme)) {
403 // Couldn't determine the scheme, s
[all...]
H A Dblob_url_request_job_factory.cc19 const std::string& scheme) {
18 BlobURLRequestJobFactory(net::URLRequest* request, const std::string& scheme) argument
H A Dfile_system_url_request_job_factory.cc17 const std::string& scheme) {
16 FileSystemURLRequestJobFactory(net::URLRequest* request, const std::string& scheme) argument
H A Durl_request_mock_link_doctor_job.cc27 const std::string& scheme) {
25 Factory( net::URLRequest* request, const std::string& scheme) argument
/external/chromium/googleurl/src/
H A Durl_parse.cc247 Component* scheme) {
258 *scheme = MakeRange(begin, i);
262 return false; // No colon found: no scheme
265 // Fills in all members of the Parsed structure except for the scheme.
268 // |after_scheme| is the character immediately following the scheme (after the
313 // The main parsing function for standard URLs. Standard URLs have a scheme,
324 if (DoExtractScheme(spec, spec_len, &parsed->scheme)) {
325 after_scheme = parsed->scheme.end() + 1; // Skip past the colon.
327 // Say there's no scheme when there is no colon. We could also say that
328 // everything is the scheme
245 DoExtractScheme(const CHAR* url, int url_len, Component* scheme) argument
640 ExtractScheme(const char* url, int url_len, Component* scheme) argument
644 ExtractScheme(const char16* url, int url_len, Component* scheme) argument
[all...]
H A Durl_parse_file.cc72 // the scheme given in |after_slashes|. This will initialize the host, path,
158 // Find the scheme.
164 // "/c:/foo". This is when there is no scheme, so we can allow pages to do
171 // Windows path, don't try to extract the scheme (for example, "c:\foo").
172 parsed->scheme.reset();
175 // Windows UNC path: don't try to extract the scheme, but keep the slashes.
176 parsed->scheme.reset();
181 if (ExtractScheme(&spec[begin], spec_len - begin, &parsed->scheme)) {
183 parsed->scheme.begin += begin;
184 after_scheme = parsed->scheme
[all...]
H A Durl_util.h65 // Adds an application-defined scheme to the internal list of "standard" URL
85 // Locates the scheme in the given string and places it into |found_scheme|,
88 // Returns whether the given |compare| scheme matches the scheme found in the
89 // input (if any). The |compare| scheme must be a valid canonical scheme or
113 // either the scheme is in the list of known standard schemes.
115 const url_parse::Component& scheme);
117 const url_parse::Component& scheme);
122 const url_parse::Component& scheme) {
121 IsStandard(const char* spec, int spec_len, const url_parse::Component& scheme) argument
[all...]
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionOperator.java38 import org.apache.http.conn.scheme.SocketFactory;
104 * to the host and port, but the scheme of the target
/external/apache-http/src/org/apache/http/conn/scheme/
H A DSocketFactory.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/SocketFactory.java $
32 package org.apache.http.conn.scheme;
/external/chromium/chrome/browser/chromeos/
H A Dproxy_config_service_impl.h73 // single-proxy, or proxy-per-scheme.
101 // Proxy setting for mode = single-proxy or proxy-per-scheme.
112 // If mode is MODE_PROXY_PER_SCHEME, |scheme| is one of "http", "https",
114 bool CanBeWrittenByUser(bool user_is_owner, const std::string& scheme);
116 // Map |scheme| (one of "http", "https", "ftp" or "socks") to the correct
117 // ManualProxy. Returns NULL if scheme is invalid.
118 ManualProxy* MapSchemeToProxy(const std::string& scheme);
149 // Encodes the proxy server as "<url-scheme>=<proxy-scheme>://<proxy>"
150 static void EncodeAndAppendProxyServer(const std::string& scheme,
[all...]
/external/chromium/chrome/browser/ui/search_engines/
H A Dedit_search_engine_controller.cc132 // Parse the string as a URL to determine the scheme. If we need to, add the
133 // scheme. As the scheme may be expanded (as happens with {google:baseURL})
134 // we need to replace the search terms before testing for the scheme.
140 std::string scheme(
142 if (!parts.scheme.is_valid()) {
143 scheme.append("://");
144 url.insert(0, scheme);
/external/chromium/chrome/common/extensions/
H A Durl_pattern.cc43 const char* kParseErrorMissingSchemeSeparator = "Missing scheme separator.";
44 const char* kParseErrorInvalidScheme = "Invalid scheme.";
45 const char* kParseErrorWrongSchemeType = "Wrong scheme type.";
69 bool IsStandardScheme(const std::string& scheme) { argument
70 // "*" gets the same treatment as a standard scheme.
71 if (scheme == "*")
74 return url_util::IsStandard(scheme.c_str(),
75 url_parse::Component(0, static_cast<int>(scheme.length())));
117 // Parse out the scheme.
121 // Some urls also use ':' alone as the scheme separato
189 SetScheme(const std::string& scheme) argument
[all...]
/external/chromium/webkit/glue/
H A Dpassword_form.h48 } scheme; member in struct:webkit_glue::PasswordForm
50 // The "Realm" for the sign-on (scheme, host, port for SCHEME_HTML, and
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAuthenticationHeader.java84 protected String scheme; field in class:AuthenticationHeader
89 this.scheme = ParameterNames.DIGEST;
147 this.scheme = challenge.scheme;
158 return this.scheme + SP + parameters.encode();
162 * Sets the scheme of the challenge information for this
165 * @param scheme -
167 * scheme.
169 public void setScheme(String scheme) { argument
170 this.scheme
[all...]

Completed in 310 milliseconds

1234567891011>>