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

/frameworks/base/core/java/android/net/
H A DNetworkState.java30 public final LinkProperties linkProperties; field in class:NetworkState
35 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties, argument
37 this(networkInfo, linkProperties, linkCapabilities, null);
40 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties, argument
43 this.linkProperties = linkProperties;
50 linkProperties = in.readParcelable(null);
63 out.writeParcelable(linkProperties, flags);
/frameworks/base/wifi/java/android/net/wifi/
H A DWpsInfo.java61 public LinkProperties linkProperties; field in class:WpsInfo
69 linkProperties = new LinkProperties();
84 sbuf.append(linkProperties.toString());
102 linkProperties = new LinkProperties(source.linkProperties);
113 dest.writeParcelable(linkProperties, flags);
126 config.linkProperties = in.readParcelable(null);
H A DWifiConfigStore.java455 if (config != null) return new LinkProperties(config.linkProperties);
469 LinkProperties linkProperties = getLinkProperties(netId);
471 if (linkProperties != null) {
472 Iterator<LinkAddress> iter = linkProperties.getLinkAddresses().iterator();
476 for (RouteInfo route : linkProperties.getRoutes()) {
480 Iterator<InetAddress> dnsIterator = linkProperties.getDnses().iterator();
494 LinkProperties linkProperties = dhcpInfo.makeLinkProperties();
500 if(config.linkProperties != null) {
501 linkProperties.setHttpProxy(config.linkProperties
1185 addIpSettingsFromConfig(LinkProperties linkProperties, WifiConfiguration config) argument
[all...]
H A DWifiConfiguration.java329 * with linkProperties */
350 * with linkProperties */
363 public LinkProperties linkProperties; field in class:WifiConfiguration
385 linkProperties = new LinkProperties();
472 sbuf.append(linkProperties.toString());
556 linkProperties = new LinkProperties(source.linkProperties);
585 dest.writeParcelable(linkProperties, flags);
616 config.linkProperties = in.readParcelable(null);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DDataCallState.java108 public SetupResult setLinkProperties(LinkProperties linkProperties, argument
114 if (linkProperties == null)
115 linkProperties = new LinkProperties();
117 linkProperties.clear();
124 linkProperties.setInterfaceName(ifname);
154 linkProperties.addLinkAddress(la);
173 linkProperties.addDns(ia);
190 linkProperties.addDns(ia);
216 linkProperties.addRoute(new RouteInfo(ia));
240 linkProperties
[all...]
/frameworks/base/services/java/com/android/server/
H A DTelephonyRegistry.java386 String reason, String apn, String apnType, LinkProperties linkProperties,
419 mDataConnectionLinkProperties = linkProperties;
445 apnType, linkProperties, linkCapabilities, roaming);
603 String reason, String apn, String apnType, LinkProperties linkProperties,
616 if (linkProperties != null) {
617 intent.putExtra(Phone.DATA_LINK_PROPERTIES_KEY, linkProperties);
618 String iface = linkProperties.getInterfaceName();
385 notifyDataConnection(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, LinkCapabilities linkCapabilities, int networkType, boolean roaming) argument
601 broadcastDataConnectionStateChanged(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, LinkCapabilities linkCapabilities, boolean roaming) argument

Completed in 142 milliseconds