Searched refs:linkProperties (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkState.java30 public final LinkProperties linkProperties; field in class:NetworkState
36 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties, argument
38 this(networkInfo, linkProperties, linkCapabilities, null, null);
41 public NetworkState(NetworkInfo networkInfo, LinkProperties linkProperties, argument
44 this.linkProperties = linkProperties;
52 linkProperties = in.readParcelable(null);
66 out.writeParcelable(linkProperties, flags);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiConfigStore.java500 if (config != null) return new LinkProperties(config.linkProperties);
514 LinkProperties linkProperties = getLinkProperties(netId);
516 if (linkProperties != null) {
517 Iterator<LinkAddress> iter = linkProperties.getLinkAddresses().iterator();
521 for (RouteInfo route : linkProperties.getRoutes()) {
525 Iterator<InetAddress> dnsIterator = linkProperties.getDnses().iterator();
539 LinkProperties linkProperties = dhcpInfo.makeLinkProperties();
544 if(config.linkProperties != null) {
545 linkProperties.setHttpProxy(config.linkProperties
1287 addIpSettingsFromConfig(LinkProperties linkProperties, WifiConfiguration config) argument
[all...]
H A DWifiConfiguration.java366 * with linkProperties */
387 * with linkProperties */
400 public LinkProperties linkProperties; field in class:WifiConfiguration
422 linkProperties = new LinkProperties();
509 sbuf.append(linkProperties.toString());
614 linkProperties = new LinkProperties(source.linkProperties);
643 dest.writeParcelable(linkProperties, flags);
674 config.linkProperties = in.readParcelable(null);
H A DWifiStateMachine.java1817 LinkProperties linkProperties = dhcpInfoInternal.makeLinkProperties();
1818 linkProperties.setHttpProxy(mWifiConfigStore.getProxyProperties(mLastNetworkId));
1819 linkProperties.setInterfaceName(mInterfaceName);
1820 if (!linkProperties.equals(mLinkProperties)) {
1823 + " old: " + mLinkProperties + "new: " + linkProperties);
1825 mLinkProperties = linkProperties;
/frameworks/opt/telephony/src/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 DDefaultPhoneNotifier.java117 LinkProperties linkProperties = null;
122 linkProperties = sender.getLinkProperties(apnType);
134 linkProperties,
/frameworks/base/core/java/android/net/arp/
H A DArpPeer.java133 public static boolean doArp(String myMacAddress, LinkProperties linkProperties, argument
135 String interfaceName = linkProperties.getInterfaceName();
140 for (LinkAddress la : linkProperties.getLinkAddresses()) {
145 for (RouteInfo route : linkProperties.getRoutes()) {
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DITelephonyRegistry.aidl38 String reason, String apn, String apnType, in LinkProperties linkProperties,
/frameworks/base/services/java/com/android/server/
H A DTelephonyRegistry.java478 String reason, String apn, String apnType, LinkProperties linkProperties,
512 mDataConnectionLinkProperties = linkProperties;
538 apnType, linkProperties, linkCapabilities, roaming);
703 String reason, String apn, String apnType, LinkProperties linkProperties,
717 if (linkProperties != null) {
718 intent.putExtra(PhoneConstants.DATA_LINK_PROPERTIES_KEY, linkProperties);
719 String iface = linkProperties.getInterfaceName();
477 notifyDataConnection(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, LinkCapabilities linkCapabilities, int networkType, boolean roaming) argument
701 broadcastDataConnectionStateChanged(int state, boolean isDataConnectivityPossible, String reason, String apn, String apnType, LinkProperties linkProperties, LinkCapabilities linkCapabilities, boolean roaming) argument
H A DConnectivityService.java1727 LinkProperties linkProperties = mNetTrackers[prevNetType].getLinkProperties();
1728 if (linkProperties != null) {
1729 String oldIface = linkProperties.getInterfaceName();
2225 LinkProperties linkProperties = mNetTrackers[netType].getLinkProperties();
2226 if (linkProperties != null) {
2227 String iface = linkProperties.getInterfaceName();
/frameworks/base/services/java/com/android/server/connectivity/
H A DTethering.java1343 LinkProperties linkProperties = null;
1345 linkProperties = mConnService.getLinkProperties(upType);
1347 if (linkProperties != null) {
1348 iface = linkProperties.getInterfaceName();
1350 Collection<InetAddress> dnses = linkProperties.getDnses();
/frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/
H A DAccessPointParserHelper.java180 config.linkProperties = mLinkProperties;
/frameworks/base/services/java/com/android/server/net/
H A DNetworkStatsService.java894 final String iface = state.linkProperties.getInterfaceName();
H A DNetworkPolicyManagerService.java992 final String iface = state.linkProperties.getInterfaceName();
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkStatsServiceTest.java894 final LinkProperties linkProp = state.length > 0 ? state[0].linkProperties : null;

Completed in 1256 milliseconds