HomeSort by relevance Sort by last modified time
    Searched defs:ProxyServer (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/libjingle/source/talk/base/
proxyserver.cc 28 #include "talk/base/proxyserver.h"
35 // ProxyServer
36 ProxyServer::ProxyServer(
46 server_socket_->SignalReadEvent.connect(this, &ProxyServer::OnAcceptEvent);
49 ProxyServer::~ProxyServer() {
56 void ProxyServer::OnAcceptEvent(AsyncSocket* socket) {
70 void ProxyServer::OnBindingDestroyed(ProxyBinding* binding) {
proxyserver.h 41 // ProxyServer is a base class that allows for easy construction of proxy
45 // class; children of ProxyServer implement WrapSocket appropriately to return
77 class ProxyServer : public sigslot::has_slots<> {
79 ProxyServer(SocketFactory* int_factory, const SocketAddress& int_addr,
81 virtual ~ProxyServer();
94 DISALLOW_EVIL_CONSTRUCTORS(ProxyServer);
97 // SocksProxyServer is a simple extension of ProxyServer to implement SOCKS.
98 class SocksProxyServer : public ProxyServer {
102 : ProxyServer(int_factory, int_addr, ext_factory, ext_ip) {
  /external/chromium_org/third_party/WebKit/Source/core/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>&);
  /external/chromium/net/proxy/
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.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...]
  /external/chromium_org/net/proxy/
proxy_server.cc 17 // Parses the proxy type from a PAC string, to a ProxyServer::Scheme.
20 ProxyServer::Scheme GetSchemeFromPacTypeInternal(
24 return ProxyServer::SCHEME_HTTP;
29 return ProxyServer::SCHEME_SOCKS4;
32 return ProxyServer::SCHEME_SOCKS4;
34 return ProxyServer::SCHEME_SOCKS5;
36 return ProxyServer::SCHEME_DIRECT;
38 return ProxyServer::SCHEME_HTTPS;
40 return ProxyServer::SCHEME_INVALID;
44 // ProxyServer::Scheme. This corresponds with the values used i
    [all...]
proxy_server.h 20 // ProxyServer encodes the {type, host, port} of a proxy server.
21 // ProxyServer is immutable.
22 class NET_EXPORT 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...]
  /external/chromium_org/chrome/test/install_test/
chrome_proxy_server.py 99 class ProxyServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer):
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 44 public class ProxyServer extends Thread {
49 private static final String TAG = "ProxyServer";
186 public ProxyServer() {

Completed in 224 milliseconds