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

1 2 3 4 5 6 7

  /external/chromium/net/proxy/
proxy_info.cc 11 ProxyInfo::ProxyInfo() : config_id_(ProxyConfig::INVALID_ID) {
14 ProxyInfo::~ProxyInfo() {
17 void ProxyInfo::Use(const ProxyInfo& other) {
21 void ProxyInfo::UseDirect() {
25 void ProxyInfo::UseNamedProxy(const std::string& proxy_uri_list) {
29 void ProxyInfo::UseProxyServer(const ProxyServer& proxy_server) {
33 std::string ProxyInfo::ToPacString() const
    [all...]
proxy_info.h 19 class ProxyInfo {
21 ProxyInfo();
22 ~ProxyInfo();
26 void Use(const ProxyInfo& proxy_info);
proxy_resolver.h 19 class ProxyInfo;
43 ProxyInfo* results,
mock_proxy_resolver.h 28 ProxyInfo* results,
32 ProxyInfo* results() const { return results_; }
44 ProxyInfo* results_;
74 ProxyInfo* results,
proxy_resolver_mac.h 24 ProxyInfo* results,
proxy_resolver_winhttp.h 25 ProxyInfo* results,
  /external/chromium_org/net/proxy/
proxy_info.cc 11 ProxyInfo::ProxyInfo()
18 ProxyInfo::~ProxyInfo() {
21 void ProxyInfo::Use(const ProxyInfo& other) {
32 void ProxyInfo::UseDirect() {
37 void ProxyInfo::UseDirectWithBypassedProxy() {
42 void ProxyInfo::UseNamedProxy(const std::string& proxy_uri_list) {
47 void ProxyInfo::UseProxyServer(const ProxyServer& proxy_server)
    [all...]
proxy_resolver.h 20 class ProxyInfo;
44 ProxyInfo* results,
proxy_info.h 21 class NET_EXPORT ProxyInfo {
23 ProxyInfo();
24 ~ProxyInfo();
28 void Use(const ProxyInfo& proxy_info);
  /external/smack/src/org/jivesoftware/smack/proxy/
ProxyException.java 30 public ProxyException(ProxyInfo.ProxyType type, String ex, Throwable cause)
35 public ProxyException(ProxyInfo.ProxyType type, String ex)
40 public ProxyException(ProxyInfo.ProxyType type)
ProxyInfo.java 29 public class ProxyInfo
45 public ProxyInfo( ProxyType pType, String pHost, int pPort, String pUser,
55 public static ProxyInfo forHttpProxy(String pHost, int pPort, String pUser,
58 return new ProxyInfo(ProxyType.HTTP, pHost, pPort, pUser, pPass);
61 public static ProxyInfo forSocks4Proxy(String pHost, int pPort, String pUser,
64 return new ProxyInfo(ProxyType.SOCKS4, pHost, pPort, pUser, pPass);
67 public static ProxyInfo forSocks5Proxy(String pHost, int pPort, String pUser,
70 return new ProxyInfo(ProxyType.SOCKS5, pHost, pPort, pUser, pPass);
73 public static ProxyInfo forNoProxy()
75 return new ProxyInfo(ProxyType.NONE, null, 0, null, null)
    [all...]
HTTPProxySocketFactory.java 43 private ProxyInfo proxy;
45 public HTTPProxySocketFactory(ProxyInfo proxy)
108 throw new ProxyException(ProxyInfo.ProxyType.HTTP, "Recieved " +
114 throw new ProxyException(ProxyInfo.ProxyType.HTTP);
136 throw new ProxyException(ProxyInfo.ProxyType.HTTP, "Never " +
148 throw new ProxyException(ProxyInfo.ProxyType.HTTP, "Empty proxy " +
155 throw new ProxyException(ProxyInfo.ProxyType.HTTP , "Unexpected " +
163 throw new ProxyException(ProxyInfo.ProxyType.HTTP);
  /external/chromium/third_party/libjingle/source/talk/base/
proxydetect.h 31 #include "talk/base/proxyinfo.h"
43 talk_base::ProxyInfo& proxy,
proxyinfo.h 45 struct ProxyInfo {
54 ProxyInfo() : type(PROXY_NONE), autodetect(false) { }
sslsocketfactory.h 31 #include "talk/base/proxyinfo.h"
53 void SetProxy(const ProxyInfo& proxy) {
58 const ProxyInfo& proxy() const { return proxy_; }
78 AsyncSocket* CreateProxySocket(const ProxyInfo& proxy, int type);
83 ProxyInfo proxy_;
autodetectproxy.h 34 #include "talk/base/proxyinfo.h"
49 const ProxyInfo& proxy() const { return proxy_; }
83 ProxyInfo proxy_;
packetsocketfactory.h 31 #include "talk/base/proxyinfo.h"
49 const ProxyInfo& proxy_info, const std::string& user_agent, bool ssl) = 0;
  /external/chromium_org/third_party/libjingle/source/talk/base/
proxydetect.h 31 #include "talk/base/proxyinfo.h"
43 talk_base::ProxyInfo* proxy,
proxyinfo.h 45 struct ProxyInfo {
54 ProxyInfo() : type(PROXY_NONE), autodetect(false) { }
sslsocketfactory.h 31 #include "talk/base/proxyinfo.h"
54 void SetProxy(const ProxyInfo& proxy) {
59 const ProxyInfo& proxy() const { return proxy_; }
82 AsyncSocket* CreateProxySocket(const ProxyInfo& proxy, int family, int type);
87 ProxyInfo proxy_;
proxydetect_unittest.cc 77 bool GetProxyInfo(const std::string prefs, ProxyInfo* info) {
88 ProxyInfo proxy_info;
95 ProxyInfo proxy_info;
105 ProxyInfo proxy_info;
121 ProxyInfo proxy_info;
137 ProxyInfo proxy_info;
153 ProxyInfo proxy_info;
168 ProxyInfo proxy_info;
  /external/chromium_org/net/http/
http_pipelined_connection.h 18 class ProxyInfo;
53 const ProxyInfo& used_proxy_info,
78 // The ProxyInfo used to establish this connection.
79 virtual const ProxyInfo& used_proxy_info() const = 0;
http_pipelined_host.h 23 class ProxyInfo;
79 const ProxyInfo& used_proxy_info,
http_pipelined_host_forced.h 27 class ProxyInfo;
46 const ProxyInfo& used_proxy_info,
  /external/smack/src/org/jivesoftware/smack/
BOSHConfiguration.java 27 import org.jivesoftware.smack.proxy.ProxyInfo;
91 public BOSHConfiguration(boolean https, String host, int port, String filePath, ProxyInfo proxy, String xmppDomain) {
99 return (proxy != null && proxy.getProxyType() != ProxyInfo.ProxyType.NONE);
102 public ProxyInfo getProxyInfo() {

Completed in 441 milliseconds

1 2 3 4 5 6 7