HomeSort by relevance Sort by last modified time
    Searched defs:ProxyServer (Results 1 - 8 of 8) 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/webrtc/base/
proxyserver.cc 11 #include "webrtc/base/proxyserver.h"
18 // ProxyServer
19 ProxyServer::ProxyServer(
29 server_socket_->SignalReadEvent.connect(this, &ProxyServer::OnAcceptEvent);
32 ProxyServer::~ProxyServer() {
39 void ProxyServer::OnAcceptEvent(AsyncSocket* socket) {
53 void ProxyServer::OnBindingDestroyed(ProxyBinding* binding) {
proxyserver.h 24 // ProxyServer is a base class that allows for easy construction of proxy
28 // class; children of ProxyServer implement WrapSocket appropriately to return
60 class ProxyServer : public sigslot::has_slots<> {
62 ProxyServer(SocketFactory* int_factory, const SocketAddress& int_addr,
64 virtual ~ProxyServer();
77 DISALLOW_EVIL_CONSTRUCTORS(ProxyServer);
80 // SocksProxyServer is a simple extension of ProxyServer to implement SOCKS.
81 class SocksProxyServer : public ProxyServer {
85 : ProxyServer(int_factory, int_addr, ext_factory, ext_ip) {
  /external/chromium_org/third_party/WebKit/Source/platform/network/
ProxyServer.h 39 class PLATFORM_EXPORT ProxyServer {
48 ProxyServer()
54 ProxyServer(Type type, const String& hostName, int port)
72 PLATFORM_EXPORT Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*);
76 PLATFORM_EXPORT String toString(const Vector<ProxyServer>&);
  /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_QUIC;
42 return ProxyServer::SCHEME_INVALID
    [all...]
proxy_server.h 20 // ProxyServer encodes the {type, host, port} of a proxy server.
21 // ProxyServer is immutable.
22 class NET_EXPORT ProxyServer {
41 // Constructs an invalid ProxyServer.
42 ProxyServer() : scheme_(SCHEME_INVALID) {}
44 ProxyServer(Scheme scheme, const HostPortPair& host_port_pair);
51 // Returns true if this ProxyServer is actually just a DIRECT connection.
54 // Returns true if this ProxyServer is an HTTP proxy.
57 // Returns true if this ProxyServer is an HTTPS proxy.
60 // Returns true if this ProxyServer is a SOCKS proxy
    [all...]
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 42 public class ProxyServer extends Thread {
47 private static final String TAG = "ProxyServer";
184 public ProxyServer() {

Completed in 208 milliseconds