Searched refs:linkProperties (Results 1 - 14 of 14) 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);
H A DWifiStateMachine.java1719 LinkProperties linkProperties = dhcpInfoInternal.makeLinkProperties();
1720 linkProperties.setHttpProxy(WifiConfigStore.getProxyProperties(mLastNetworkId));
1721 linkProperties.setInterfaceName(mInterfaceName);
1722 if (!linkProperties.equals(mLinkProperties)) {
1725 + " old: " + mLinkProperties + "new: " + linkProperties);
1727 mLinkProperties = linkProperties;
/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...]
H A DITelephonyRegistry.aidl37 String reason, String apn, String apnType, in LinkProperties linkProperties,
H A DDefaultPhoneNotifier.java114 LinkProperties linkProperties = null;
119 linkProperties = sender.getLinkProperties(apnType);
131 linkProperties,
/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
H A DConnectivityService.java1542 LinkProperties linkProperties = mNetTrackers[prevNetType].getLinkProperties();
1543 if (linkProperties != null) {
1544 String oldIface = linkProperties.getInterfaceName();
1913 LinkProperties linkProperties = mNetTrackers[netType].getLinkProperties();
1914 if (linkProperties != null) {
1915 String iface = linkProperties.getInterfaceName();
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DAccessPointParserHelper.java180 config.linkProperties = mLinkProperties;
/frameworks/base/services/java/com/android/server/connectivity/
H A DTethering.java1320 LinkProperties linkProperties = null;
1322 linkProperties = mConnService.getLinkProperties(upType);
1324 if (linkProperties != null) iface = linkProperties.getInterfaceName();
/frameworks/base/services/java/com/android/server/net/
H A DNetworkPolicyManagerService.java777 final String iface = state.linkProperties.getInterfaceName();
H A DNetworkStatsService.java759 final String iface = state.linkProperties.getInterfaceName();

Completed in 586 milliseconds