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

1 2 3 4

  /external/apache-http/src/org/apache/http/conn/scheme/
SchemeRegistry.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/SchemeRegistry.java $
31 package org.apache.http.conn.scheme;
41 * A set of supported protocol {@link Scheme schemes}.
55 private final Map<String,Scheme> registeredSchemes;
59 * Creates a new, empty scheme registry.
63 registeredSchemes = new LinkedHashMap<String,Scheme>();
68 * Obtains a scheme by name.
70 * @param name the name of the scheme to look up (in lowercase)
72 * @return the scheme, never <code>null</code>
75 * if the scheme with the given name is not registere
    [all...]
Scheme.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/Scheme.java $
31 package org.apache.http.conn.scheme;
38 * Encapsulates specifics of a protocol scheme such as "http" or "https".
48 * Scheme https = new Scheme("https", new MySecureSocketFactory(), 443);
57 public final class Scheme {
59 /** The name of this scheme, in lowercase. (e.g. http, https) */
62 /** The socket factory for this scheme */
65 /** The default port for this scheme */
    [all...]
  /external/chromium_org/components/navigation_metrics/
navigation_metrics.cc 12 enum Scheme {
46 Scheme scheme = SCHEME_UNKNOWN; local
49 scheme = static_cast<Scheme>(i);
54 "Navigation.MainFrameScheme", scheme, SCHEME_MAX);
  /external/chromium_org/net/proxy/
proxy_server.h 27 enum Scheme {
44 ProxyServer(Scheme scheme, const HostPortPair& host_port_pair);
48 // Gets the proxy's scheme (i.e. SOCKS4, SOCKS5, HTTP)
49 Scheme scheme() const { return scheme_; } function in class:net::ProxyServer
71 // [<scheme>"://"]<server>[":"<port>]
73 // Both <scheme> and <port> are optional. If <scheme> is omitted, it will be
75 // the default port for the chosen scheme (80 for "http", 1080 for "socks")
    [all...]
proxy_server.cc 17 // Parses the proxy type from a PAC string, to a ProxyServer::Scheme.
20 ProxyServer::Scheme GetSchemeFromPacTypeInternal(
45 // Parses the proxy scheme from a URL-like representation, to a
46 // ProxyServer::Scheme. This corresponds with the values used in
48 ProxyServer::Scheme GetSchemeFromURIInternal(std::string::const_iterator begin,
77 ProxyServer::ProxyServer(Scheme scheme, const HostPortPair& host_port_pair)
78 : scheme_(scheme), host_port_pair_(host_port_pair) {
89 // Doesn't make sense to call this if the URI scheme doesn't
97 Scheme default_scheme)
106 Scheme scheme = default_scheme; local
170 Scheme scheme = GetSchemeFromPacTypeInternal(begin, space); local
    [all...]
proxy_server_mac.cc 18 ProxyServer ProxyServer::FromDictionary(Scheme scheme,
22 if (scheme == SCHEME_INVALID || scheme == SCHEME_DIRECT) {
24 return ProxyServer(scheme, HostPortPair());
43 port = GetDefaultPortForScheme(scheme);
46 return ProxyServer(scheme, HostPortPair(host, port));
  /external/chromium_org/net/http/
http_auth_cache.h 21 // For each (origin, realm, scheme) triple the cache stores a
23 // - the origin server {protocol scheme, host, port}
25 // - the last auth handler used (contains realm and authentication scheme)
27 // Entries can be looked up by either (origin, realm, scheme) or (origin, path).
43 // The authentication scheme of the challenge.
44 HttpAuth::Scheme scheme() const { function in class:net::HttpAuthCache::Entry
90 HttpAuth::Scheme scheme_;
118 // scheme |scheme|
    [all...]
http_auth.h 90 enum Scheme {
122 // Returns a string representation of an authentication Scheme.
123 static const char* SchemeToString(Scheme scheme);
132 // |origin| is used by the NTLM and Negotiation authentication scheme to
139 const std::set<Scheme>& disabled_schemes,
168 const std::set<Scheme>& disabled_schemes,
http_auth_controller.h 72 virtual bool IsAuthSchemeDisabled(HttpAuth::Scheme scheme) const;
73 virtual void DisableAuthScheme(HttpAuth::Scheme scheme);
113 // auth scheme for this controller and returns true. Returns false
122 // Holds the {scheme, host, path, port} for the authentication target.
125 // Holds the {scheme, host, port} for the authentication target.
132 // |handler_| encapsulates the logic for the particular auth-scheme.
164 std::set<HttpAuth::Scheme> disabled_schemes_;
http_auth_handler.h 30 // authentication scheme, but none of the tokens occurring after the
31 // authentication scheme. |target| and |origin| are both stored
49 // authentication scheme, but none of the tokens occurring after the
50 // authentication scheme.
79 // The authentication scheme as an enumerated value.
80 HttpAuth::Scheme auth_scheme() const {
105 // that this HttpAuthHandler is handling. The URL includes scheme, host, and
111 // Returns true if the authentication scheme does not send the username and
117 // Returns true if the authentication scheme is connection-based, for
118 // example, NTLM. A connection-based authentication scheme does not suppor
    [all...]
http_auth.cc 30 const std::set<Scheme>& disabled_schemes,
62 const std::set<Scheme>& disabled_schemes,
68 HttpAuth::Scheme current_scheme = handler->auth_scheme();
79 if (!LowerCaseEqualsASCII(props.scheme(), current_scheme_name.c_str()))
131 const char* HttpAuth::SchemeToString(Scheme scheme) {
142 if (scheme < AUTH_SCHEME_BASIC || scheme >= AUTH_SCHEME_MAX) {
146 return kSchemeNames[scheme];
http_auth_cache.cc 46 // Note that the scheme may be FTP when we're using a HTTP proxy.
82 HttpAuth::Scheme scheme) {
90 it->scheme() == scheme) {
137 HttpAuth::Scheme scheme,
147 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
166 entry->scheme_ = scheme;
171 DCHECK_EQ(scheme, entry->scheme_)
    [all...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
EmailClientConnectionManager.java 29 import org.apache.http.conn.scheme.PlainSocketFactory;
30 import org.apache.http.conn.scheme.Scheme;
31 import org.apache.http.conn.scheme.SchemeRegistry;
71 registry.register(new Scheme("http", PlainSocketFactory.getSocketFactory(),
74 registry.register(new Scheme("https",
77 // Register the httpts scheme with our insecure factory
78 registry.register(new Scheme("httpts",
100 Scheme existing = registry.get(schemeName);
111 registry.register(new Scheme(schemeName, ssf, hostAuth.mPort))
    [all...]
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultHttpRoutePlanner.java 44 import org.apache.http.conn.scheme.Scheme;
45 import org.apache.http.conn.scheme.SchemeRegistry;
59 /** The scheme registry. */
66 * @param schreg the scheme registry
107 final Scheme schm = schemeRegistry.getScheme(target.getSchemeName());
109 // a layered scheme implies a secure connection
ProxySelectorRoutePlanner.java 50 import org.apache.http.conn.scheme.Scheme;
51 import org.apache.http.conn.scheme.SchemeRegistry;
69 /** The scheme registry. */
79 * @param schreg the scheme registry
157 final Scheme schm =
160 // a layered scheme implies a secure connection
215 // assume default scheme (http)
DefaultClientConnectionOperator.java 49 import org.apache.http.conn.scheme.LayeredSocketFactory;
50 import org.apache.http.conn.scheme.PlainSocketFactory;
51 import org.apache.http.conn.scheme.Scheme;
52 import org.apache.http.conn.scheme.SchemeRegistry;
53 import org.apache.http.conn.scheme.SocketFactory;
75 /** The scheme registry for looking up socket factories. */
80 * Creates a new client connection operator for the given scheme registry.
82 * @param schemes the scheme registry
87 ("Scheme registry must not be null.")
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
password_store_mac_internal.h 31 autofill::PasswordForm::Scheme scheme);
81 // Returns the Keychain items matching the given signon_realm, scheme, and
87 autofill::PasswordForm::Scheme scheme,
91 // Returns the Keychain SecAuthenticationType type corresponding to |scheme|.
93 autofill::PasswordForm::Scheme scheme);
149 STRICT_FORM_MATCH, // Match only forms with the same scheme, signon realm and
  /external/smack/src/com/kenai/jbosh/
ApacheHTTPSender.java 28 import org.apache.http.conn.scheme.PlainSocketFactory;
29 import org.apache.http.conn.scheme.Scheme;
30 import org.apache.http.conn.scheme.SchemeRegistry;
141 // Create and initialize scheme registry
144 new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
148 new Scheme("https", sslFactory, 443));
  /external/chromium_org/components/autofill/content/common/
autofill_param_traits_macros.h 26 IPC_ENUM_TRAITS_MAX_VALUE(autofill::PasswordForm::Scheme,
30 IPC_STRUCT_TRAITS_MEMBER(scheme)
  /external/chromium_org/components/password_manager/core/browser/
password_form_data.h 20 const autofill::PasswordForm::Scheme scheme; member in struct:password_manager::PasswordFormData
  /external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
ApacheHttpClient.java 30 import org.apache.http.conn.scheme.Scheme;
47 new Scheme("https", 443, new SSLSocketFactory(sslContext)));
  /external/chromium_org/components/autofill/core/common/
password_form.h 43 // of the same Scheme will be matched/autofilled against each other.
44 enum Scheme {
50 } scheme; member in struct:autofill::PasswordForm
52 // The "Realm" for the sign-on (scheme, host, port for SCHEME_HTML, and
58 // The original "Realm" for the sign-on (scheme, host, port for SCHEME_HTML,
68 // 3) The scheme is the same.
  /external/chromium_org/components/data_reduction_proxy/browser/
http_auth_handler_data_reduction_proxy.h 20 // Returns the data reduction proxy auth scheme.
21 static std::string Scheme();
  /packages/services/Mms/src/com/android/mms/service/http/
NetworkAwareClientConnectionOperator.java 25 import org.apache.http.conn.scheme.LayeredSocketFactory;
26 import org.apache.http.conn.scheme.PlainSocketFactory;
27 import org.apache.http.conn.scheme.Scheme;
28 import org.apache.http.conn.scheme.SchemeRegistry;
29 import org.apache.http.conn.scheme.SocketFactory;
113 final Scheme schm = schemeRegistry.getScheme(target.getSchemeName());
  /external/chromium_org/chrome/browser/extensions/api/proxy/
proxy_api_helpers.h 92 // |default_scheme| is the default scheme that is filled in, in case the
96 net::ProxyServer::Scheme default_scheme,

Completed in 1332 milliseconds

1 2 3 4