Home | History | Annotate | Download | only in net

Lines Matching refs:proxyProperties

33 public class ProxyProperties implements Parcelable {
40 public ProxyProperties(String host, int port, String exclList) {
46 private ProxyProperties(String host, int port, String exclList, String[] parsedExclList) {
54 public ProxyProperties(ProxyProperties source) {
141 sb.append("[ProxyProperties.mHost == null]");
148 if (!(o instanceof ProxyProperties)) return false;
149 ProxyProperties p = (ProxyProperties)o;
198 public static final Creator<ProxyProperties> CREATOR =
199 new Creator<ProxyProperties>() {
200 public ProxyProperties createFromParcel(Parcel in) {
209 ProxyProperties proxyProperties =
210 new ProxyProperties(host, port, exclList, parsedExclList);
211 return proxyProperties;
214 public ProxyProperties[] newArray(int size) {
215 return new ProxyProperties[size];