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

/frameworks/base/core/java/android/net/
H A DProxyInfo.java39 public class ProxyInfo implements Parcelable { class in inherits:Parcelable
61 * Constructs a {@link ProxyInfo} object that points at a Direct proxy
64 public static ProxyInfo buildDirectProxy(String host, int port) {
65 return new ProxyInfo(host, port, null);
69 * Constructs a {@link ProxyInfo} object that points at a Direct proxy
77 public static ProxyInfo buildDirectProxy(String host, int port, List<String> exclList) {
79 return new ProxyInfo(host, port, TextUtils.join(",", array), array);
83 * Construct a {@link ProxyInfo} that will download and run the PAC script
86 public static ProxyInfo buildPacProxy(Uri pacUri) {
87 return new ProxyInfo(pacUr
94 public ProxyInfo(String host, int port, String exclList) { method in class:ProxyInfo
105 public ProxyInfo(Uri pacFileUrl) { method in class:ProxyInfo
119 public ProxyInfo(String pacFileUrl) { method in class:ProxyInfo
130 public ProxyInfo(Uri pacFileUrl, int localProxyPort) { method in class:ProxyInfo
140 private ProxyInfo(String host, int port, String exclList, String[] parsedExclList) { method in class:ProxyInfo
152 public ProxyInfo(ProxyInfo source) { method in class:ProxyInfo
[all...]

Completed in 805 milliseconds