Home | History | Annotate | Download | only in wifi

Lines Matching refs:linkProperties

24 import android.net.LinkProperties;
135 private LinkProperties mLinkProperties = new LinkProperties();
234 for(InetAddress a : config.linkProperties.getAddresses()) {
247 config.linkProperties.getHttpProxy().getPacFileUrl());
435 config.linkProperties = new LinkProperties(mLinkProperties);
479 private int validateIpConfigFields(LinkProperties linkProperties) {
498 linkProperties.addLinkAddress(new LinkAddress(inetAddr, networkPrefixLength));
523 linkProperties.addRoute(new RouteInfo(gatewayAddr));
538 linkProperties.addDns(dnsAddr);
548 linkProperties.addDns(dnsAddr);
759 LinkProperties linkProperties = config.linkProperties;
760 linkProperties.getLinkAddresses().iterator();
768 for (RouteInfo route : linkProperties.getRoutes()) {
775 Iterator<InetAddress> dnsIterator = linkProperties.getDnses().iterator();
809 ProxyProperties proxyProperties = config.linkProperties.getHttpProxy();