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

  /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);
  /external/chromium/third_party/libjingle/source/talk/base/
proxyinfo.h 45 struct ProxyInfo {
54 ProxyInfo() : type(PROXY_NONE), autodetect(false) { }
  /external/smack/src/org/jivesoftware/smack/proxy/
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...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 82 __all__ = ['Http', 'Response', 'ProxyInfo', 'HttpLib2Error',
694 class ProxyInfo(object):
700 p = ProxyInfo(proxy_type=socks.PROXY_TYPE_HTTP, proxy_host='localhost', proxy_port=8000)
792 """The value of proxy_info is a ProxyInfo instance.
    [all...]

Completed in 120 milliseconds