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

1 2 3

  /external/webkit/Source/WebCore/platform/network/soup/
ProxyServerSoup.cpp 27 #include "ProxyServer.h"
33 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
36 return Vector<ProxyServer>();
  /external/webkit/Source/WebCore/platform/network/win/
ProxyServerWin.cpp 27 #include "ProxyServer.h"
31 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
34 return Vector<ProxyServer>();
  /external/webkit/Source/WebCore/platform/network/android/
ProxyServerAndroid.cpp 28 #include "ProxyServer.h"
34 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
37 return Vector<ProxyServer>();
  /external/webkit/Source/WebCore/platform/network/curl/
ProxyServerCurl.cpp 27 #include "ProxyServer.h"
34 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
37 return Vector<ProxyServer>();
  /external/chromium/net/proxy/
proxy_server_unittest.cc 9 // Test the creation of ProxyServer using ProxyServer::FromURI, which parses
16 net::ProxyServer::Scheme expected_scheme;
25 net::ProxyServer::SCHEME_HTTP,
33 net::ProxyServer::SCHEME_HTTP,
41 net::ProxyServer::SCHEME_HTTP,
51 net::ProxyServer::SCHEME_HTTP,
59 net::ProxyServer::SCHEME_HTTP,
67 net::ProxyServer::SCHEME_HTTP,
75 net::ProxyServer::SCHEME_HTTP
    [all...]
proxy_list.h 16 class ProxyServer;
31 void SetSingleProxyServer(const ProxyServer& proxy_server);
38 // |scheme_bit_field| is a bunch of ProxyServer::Scheme bitwise ORed together.
46 const ProxyServer& Get() const;
67 std::vector<ProxyServer> proxies_;
proxy_server.h 20 // ProxyServer encodes the {type, host, port} of a proxy server.
21 // ProxyServer is immutable.
22 class ProxyServer {
38 // Constructs an invalid ProxyServer.
39 ProxyServer() : scheme_(SCHEME_INVALID) {}
41 ProxyServer(Scheme scheme, const HostPortPair& host_port_pair);
48 // Returns true if this ProxyServer is actually just a DIRECT connection.
51 // Returns true if this ProxyServer is an HTTP proxy.
54 // Returns true if this ProxyServer is an HTTPS proxy.
57 // Returns true if this ProxyServer is a SOCKS proxy
    [all...]
proxy_server.cc 18 // Parses the proxy type from a PAC string, to a ProxyServer::Scheme.
21 ProxyServer::Scheme GetSchemeFromPacTypeInternal(
25 return ProxyServer::SCHEME_HTTP;
30 return ProxyServer::SCHEME_SOCKS4;
33 return ProxyServer::SCHEME_SOCKS4;
35 return ProxyServer::SCHEME_SOCKS5;
37 return ProxyServer::SCHEME_DIRECT;
39 return ProxyServer::SCHEME_HTTPS;
41 return ProxyServer::SCHEME_INVALID;
45 // ProxyServer::Scheme. This corresponds with the values used i
    [all...]
proxy_server_mac.cc 18 ProxyServer ProxyServer::FromDictionary(Scheme scheme,
24 return ProxyServer(scheme, HostPortPair());
34 return ProxyServer(); // Invalid.
48 return ProxyServer(scheme, HostPortPair(host, port));
proxy_config.h 77 const ProxyServer* MapUrlSchemeToProxy(const std::string& url_scheme) const;
91 ProxyServer single_proxy;
94 ProxyServer proxy_for_http;
95 ProxyServer proxy_for_https;
96 ProxyServer proxy_for_ftp;
99 ProxyServer fallback_proxy;
105 ProxyServer* MapUrlSchemeToProxyNoFallback(const std::string& scheme);
proxy_list.cc 27 ProxyServer uri = ProxyServer::FromURI(
28 str_tok.token_begin(), str_tok.token_end(), ProxyServer::SCHEME_HTTP);
35 void ProxyList::SetSingleProxyServer(const ProxyServer& proxy_server) {
46 std::vector<ProxyServer> good_proxies;
47 std::vector<ProxyServer> bad_proxies;
49 std::vector<ProxyServer>::const_iterator iter = proxies_.begin();
70 for (std::vector<ProxyServer>::iterator it = proxies_.begin();
84 const ProxyServer& ProxyList::Get() const {
93 ProxyServer uri = ProxyServer::FromPacString
    [all...]
proxy_config.cc 19 const ProxyServer& proxy,
55 const ProxyServer* entry = MapUrlSchemeToProxy(url.scheme());
76 single_proxy = ProxyServer();
77 proxy_for_http = ProxyServer();
78 proxy_for_https = ProxyServer();
79 proxy_for_ftp = ProxyServer();
80 fallback_proxy = ProxyServer();
96 single_proxy = ProxyServer::FromURI(url_scheme,
97 ProxyServer::SCHEME_HTTP);
107 ProxyServer* entry = MapUrlSchemeToProxyNoFallback(url_scheme)
    [all...]
proxy_info.cc 22 proxy_list_.SetSingleProxyServer(ProxyServer::Direct());
29 void ProxyInfo::UseProxyServer(const ProxyServer& proxy_server) {
proxy_info.h 38 void UseProxyServer(const ProxyServer& proxy_server);
81 const ProxyServer& proxy_server() const { return proxy_list_.Get(); }
proxy_list_unittest.cc 74 ProxyServer::SCHEME_DIRECT | ProxyServer::SCHEME_HTTP,
79 ProxyServer::SCHEME_DIRECT | ProxyServer::SCHEME_SOCKS4,
proxy_config_service_mac.cc 75 ProxyServer proxy_server =
76 ProxyServer::FromDictionary(ProxyServer::SCHEME_HTTP,
89 ProxyServer proxy_server =
90 ProxyServer::FromDictionary(ProxyServer::SCHEME_HTTP,
103 ProxyServer proxy_server =
104 ProxyServer::FromDictionary(ProxyServer::SCHEME_HTTP,
117 ProxyServer proxy_server
    [all...]
proxy_config_unittest.cc 14 const ProxyServer& proxy_server) {
55 ProxyServer::FromURI("myproxy:80", ProxyServer::SCHEME_HTTP);
62 ProxyServer::FromURI("myproxy:100", ProxyServer::SCHEME_HTTP);
68 ProxyServer::FromURI("myproxy", ProxyServer::SCHEME_HTTP);
proxy_resolver_mac.cc 20 // Utility function to map a CFProxyType to a ProxyServer::Scheme.
21 // If the type is unknown, returns ProxyServer::SCHEME_INVALID.
22 net::ProxyServer::Scheme GetProxyServerScheme(CFStringRef proxy_type) {
24 return net::ProxyServer::SCHEME_DIRECT;
26 return net::ProxyServer::SCHEME_HTTP;
30 return net::ProxyServer::SCHEME_SOCKS5;
32 return net::ProxyServer::SCHEME_INVALID;
160 ProxyServer proxy_server = ProxyServer::FromDictionary(
  /external/webkit/Source/WebCore/platform/network/
ProxyServer.h 38 class ProxyServer {
47 ProxyServer()
53 ProxyServer(Type type, const String& hostName, int port)
71 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*);
75 String toString(const Vector<ProxyServer>&);
ProxyServer.cpp 27 #include "ProxyServer.h"
33 static void appendProxyServerString(StringBuilder& builder, const ProxyServer& proxyServer)
35 switch (proxyServer.type()) {
36 case ProxyServer::Direct:
39 case ProxyServer::HTTP:
40 case ProxyServer::HTTPS:
43 case ProxyServer::SOCKS:
50 ASSERT(!proxyServer.hostName().isNull());
51 builder.append(proxyServer.hostName())
    [all...]
  /external/webkit/Source/WebCore/platform/network/qt/
ProxyServerQt.cpp 27 #include "ProxyServer.h"
40 Vector<ProxyServer> proxyServersForURL(const KURL& url, const NetworkingContext* context)
42 Vector<ProxyServer> servers;
50 ProxyServer::Type proxyType;
53 proxyType = ProxyServer::SOCKS;
58 proxyType = ProxyServer::HTTP;
63 proxyType = ProxyServer::Direct;
66 servers.append(ProxyServer(proxyType, proxy.hostName(), proxy.port()));
  /external/webkit/Source/WebCore/platform/network/cf/
ProxyServerCFNet.cpp 27 #include "ProxyServer.h"
39 static void addProxyServersForURL(Vector<ProxyServer>& proxyServers, const KURL& url)
54 ProxyServer::Type type = ProxyServer::Direct;
62 proxyServers.append(ProxyServer(ProxyServer::Direct, String(), -1));
67 type = ProxyServer::HTTP;
69 type = ProxyServer::HTTPS;
71 type = ProxyServer::SOCKS;
82 proxyServers.append(ProxyServer(type, host, portValue))
    [all...]
  /external/chromium/chrome/browser/chromeos/
proxy_cros_settings_provider.h 29 net::ProxyServer CreateProxyServerFromHost(
32 net::ProxyServer::Scheme scheme) const;
34 net::ProxyServer CreateProxyServerFromPort(
37 net::ProxyServer::Scheme scheme) const;
proxy_cros_settings_provider.cc 58 val, config.single_proxy, net::ProxyServer::SCHEME_HTTP));
64 val, config.single_proxy, net::ProxyServer::SCHEME_HTTP));
71 val, config.http_proxy, net::ProxyServer::SCHEME_HTTP));
78 val, config.http_proxy, net::ProxyServer::SCHEME_HTTP));
85 val, config.https_proxy, net::ProxyServer::SCHEME_HTTP));
92 val, config.https_proxy, net::ProxyServer::SCHEME_HTTP));
131 net::ProxyServer());
153 val, config.ftp_proxy, net::ProxyServer::SCHEME_HTTP));
160 val, config.ftp_proxy, net::ProxyServer::SCHEME_HTTP));
168 net::ProxyServer::SCHEME_SOCKS5
    [all...]
  /external/chromium/chrome/browser/importer/
firefox_proxy_settings.cc 129 config->proxy_rules().proxy_for_http = net::ProxyServer(
130 net::ProxyServer::SCHEME_HTTP,
135 config->proxy_rules().proxy_for_ftp = net::ProxyServer(
136 net::ProxyServer::SCHEME_HTTP,
141 config->proxy_rules().proxy_for_https = net::ProxyServer(
142 net::ProxyServer::SCHEME_HTTP,
147 net::ProxyServer::Scheme proxy_scheme = V5 == socks_version() ?
148 net::ProxyServer::SCHEME_SOCKS5 : net::ProxyServer::SCHEME_SOCKS4;
150 config->proxy_rules().fallback_proxy = net::ProxyServer(
    [all...]

Completed in 217 milliseconds

1 2 3