Searched defs:ProxyServer (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/platform/network/
H A DProxyServer.h38 class ProxyServer { class in namespace:WebCore
47 ProxyServer() function in class:WebCore::ProxyServer
53 ProxyServer(Type type, const String& hostName, int port) function in class:WebCore::ProxyServer
71 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*);
75 String toString(const Vector<ProxyServer>&);
/external/chromium/net/proxy/
H A Dproxy_server.cc18 // 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
74 ProxyServer::ProxyServer(Scheme scheme, const HostPortPair& host_port_pair) function in class:net::ProxyServer
[all...]
H A Dproxy_server.h20 // ProxyServer encodes the {type, host, port} of a proxy server.
21 // ProxyServer is immutable.
22 class ProxyServer { class in namespace:net
38 // Constructs an invalid ProxyServer.
39 ProxyServer() : scheme_(SCHEME_INVALID) {} function in class:net::ProxyServer
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 i
[all...]

Completed in 90 milliseconds