Searched refs:Scheme (Results 1 - 25 of 59) sorted by relevance

123

/external/apache-http/src/org/apache/http/conn/scheme/
H A DSchemeRegistry.java41 * A set of supported protocol {@link Scheme schemes}.
60 private final Map<String,Scheme> registeredSchemes;
68 registeredSchemes = new LinkedHashMap<String,Scheme>();
82 public synchronized final Scheme getScheme(String name) {
83 Scheme found = get(name);
86 ("Scheme '"+name+"' not registered.");
103 public synchronized final Scheme getScheme(HttpHost host) {
119 public synchronized final Scheme get(String name) {
125 Scheme found = registeredSchemes.get(name);
140 public synchronized final Scheme registe
[all...]
H A DScheme.java2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/conn/scheme/Scheme.java $
48 * Scheme https = new Scheme("https", new MySecureSocketFactory(), 443);
62 public final class Scheme { class
92 public Scheme(final String name, method in class:Scheme
98 ("Scheme name may not be null");
202 if (!(obj instanceof Scheme)) return false;
204 Scheme s = (Scheme) obj;
228 } // class Scheme
[all...]
/external/chromium_org/components/navigation_metrics/
H A Dnavigation_metrics.cc12 enum Scheme { enum in namespace:__anon6641
46 Scheme scheme = SCHEME_UNKNOWN;
49 scheme = static_cast<Scheme>(i);
/external/chromium_org/net/proxy/
H A Dproxy_server.h27 enum Scheme { enum in class:net::ProxyServer
44 ProxyServer(Scheme scheme, const HostPortPair& host_port_pair);
49 Scheme scheme() const { return scheme_; }
89 static ProxyServer FromURI(const std::string& uri, Scheme default_scheme);
92 Scheme default_scheme);
126 static ProxyServer FromDictionary(Scheme scheme,
137 static int GetDefaultPortForScheme(Scheme scheme);
140 // ProxyServer::Scheme. This corresponds with the values used in
143 static Scheme GetSchemeFromURI(const std::string& scheme);
161 Scheme schem
[all...]
H A Dproxy_server.cc17 // Parses the proxy type from a PAC string, to a ProxyServer::Scheme.
20 ProxyServer::Scheme GetSchemeFromPacTypeInternal(
46 // ProxyServer::Scheme. This corresponds with the values used in
48 ProxyServer::Scheme GetSchemeFromURIInternal(std::string::const_iterator begin,
69 ProxyServer::ProxyServer(Scheme scheme, const HostPortPair& host_port_pair)
90 Scheme default_scheme) {
97 Scheme default_scheme) {
99 Scheme scheme = default_scheme;
163 Scheme scheme = GetSchemeFromPacTypeInternal(begin, space);
193 int ProxyServer::GetDefaultPortForScheme(Scheme schem
[all...]
H A Dproxy_server_mac.cc18 ProxyServer ProxyServer::FromDictionary(Scheme scheme,
/external/chromium_org/net/http/
H A Dhttp_auth_cache.h44 HttpAuth::Scheme scheme() const {
90 HttpAuth::Scheme scheme_;
125 HttpAuth::Scheme scheme);
149 HttpAuth::Scheme scheme,
163 HttpAuth::Scheme scheme,
176 HttpAuth::Scheme scheme,
H A Dhttp_auth.h90 enum Scheme { enum in class:net::HttpAuth
122 // Returns a string representation of an authentication Scheme.
123 static const char* SchemeToString(Scheme scheme);
139 const std::set<Scheme>& disabled_schemes,
168 const std::set<Scheme>& disabled_schemes,
H A Dhttp_auth_controller.h72 virtual bool IsAuthSchemeDisabled(HttpAuth::Scheme scheme) const;
73 virtual void DisableAuthScheme(HttpAuth::Scheme scheme);
164 std::set<HttpAuth::Scheme> disabled_schemes_;
H A Dhttp_auth_handler.h80 HttpAuth::Scheme auth_scheme() const {
166 HttpAuth::Scheme auth_scheme_;
H A Dhttp_auth.cc30 const std::set<Scheme>& disabled_schemes,
62 const std::set<Scheme>& disabled_schemes,
68 HttpAuth::Scheme current_scheme = handler->auth_scheme();
131 const char* HttpAuth::SchemeToString(Scheme scheme) {
H A Dhttp_auth_cache.cc82 HttpAuth::Scheme scheme) {
137 HttpAuth::Scheme scheme,
237 HttpAuth::Scheme scheme,
258 HttpAuth::Scheme scheme,
H A Dhttp_auth_unittest.cc53 std::set<HttpAuth::Scheme> disabled_schemes;
69 HttpAuth::Scheme challenge_scheme;
124 std::set<HttpAuth::Scheme> disabled_schemes;
H A Dhttp_auth_controller_unittest.cc125 MockHandler(int expected_rv, HttpAuth::Scheme scheme)
161 HttpAuth::Scheme expected_scheme_;
/external/apache-http/src/org/apache/http/impl/conn/
H A DDefaultHttpRoutePlanner.java44 import org.apache.http.conn.scheme.Scheme;
112 final Scheme schm = schemeRegistry.getScheme(target.getSchemeName());
H A DProxySelectorRoutePlanner.java50 import org.apache.http.conn.scheme.Scheme;
162 final Scheme schm =
H A DDefaultClientConnectionOperator.java51 import org.apache.http.conn.scheme.Scheme;
92 ("Scheme registry must not be null.");
131 final Scheme schm = schemeRegistry.getScheme(target.getSchemeName());
226 final Scheme schm = schemeRegistry.getScheme(target.getSchemeName());
/external/chromium_org/chrome/browser/password_manager/
H A Dpassword_store_mac_internal.h31 autofill::PasswordForm::Scheme scheme);
84 autofill::PasswordForm::Scheme scheme,
90 autofill::PasswordForm::Scheme scheme);
/external/smack/src/com/kenai/jbosh/
H A DApacheHTTPSender.java29 import org.apache.http.conn.scheme.Scheme;
144 new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
148 new Scheme("https", sslFactory, 443));
/external/chromium_org/components/autofill/content/common/
H A Dautofill_param_traits_macros.h25 IPC_ENUM_TRAITS_MAX_VALUE(autofill::PasswordForm::Scheme,
/external/chromium_org/components/password_manager/core/browser/
H A Dpassword_form_data.h20 const autofill::PasswordForm::Scheme scheme;
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
H A DApacheHttpClient.java30 import org.apache.http.conn.scheme.Scheme;
47 new Scheme("https", 443, new SSLSocketFactory(sslContext)));
/external/chromium_org/components/autofill/core/common/
H A Dpassword_form.h43 // of the same Scheme will be matched/autofilled against each other.
44 enum Scheme { enum in struct:autofill::PasswordForm
/external/apache-http/src/org/apache/http/impl/client/
H A DDefaultHttpClient.java57 import org.apache.http.conn.scheme.Scheme;
181 new Scheme("http", PlainSocketFactory.getSocketFactory(), 80));
183 new Scheme("https", SSLSocketFactory.getSocketFactory(), 443));
/external/chromium_org/chrome/browser/extensions/api/proxy/
H A Dproxy_api_helpers.h96 net::ProxyServer::Scheme default_scheme,

Completed in 571 milliseconds

123