Home
last modified time | relevance | path

Searched refs:mLinkProperties (Results 1 – 9 of 9) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
DPreciseDataConnectionState.java50 private LinkProperties mLinkProperties = null; field in PreciseDataConnectionState
66 mLinkProperties = linkProperties; in PreciseDataConnectionState()
87 mLinkProperties = (LinkProperties)in.readParcelable(null); in PreciseDataConnectionState()
153 return mLinkProperties; in getDataConnectionLinkProperties()
175 out.writeParcelable(mLinkProperties, flags); in writeToParcel()
200 result = prime * result + ((mLinkProperties == null) ? 0 : mLinkProperties.hashCode()); in hashCode()
238 if (mLinkProperties == null) { in equals()
239 if (other.mLinkProperties != null) { in equals()
242 } else if (!mLinkProperties.equals(other.mLinkProperties)) { in equals()
270 sb.append(", Link properties: " + mLinkProperties); in toString()
/frameworks/base/core/java/com/android/server/net/
DNetlinkTracker.java79 private final LinkProperties mLinkProperties; field in NetlinkTracker
88 mLinkProperties = new LinkProperties(); in NetlinkTracker()
89 mLinkProperties.setInterfaceName(mInterfaceName); in NetlinkTracker()
112 changed = mLinkProperties.addLinkAddress(address); in addressUpdated()
126 changed = mLinkProperties.removeLinkAddress(address); in addressRemoved()
140 changed = mLinkProperties.addRoute(route); in routeUpdated()
154 changed = mLinkProperties.removeRoute(route); in routeRemoved()
169 mDnsServerRepository.setDnsServersOn(mLinkProperties); in interfaceDnsServerInfo()
180 return new LinkProperties(mLinkProperties); in getLinkProperties()
188 mLinkProperties.clear(); in clearLinkProperties()
[all …]
/frameworks/base/core/java/android/net/
DBaseNetworkStateTracker.java46 protected LinkProperties mLinkProperties; field in BaseNetworkStateTracker
57 mLinkProperties = new LinkProperties(); in BaseNetworkStateTracker()
98 return new LinkProperties(mLinkProperties); in getLinkProperties()
179 if (mLinkProperties != null) { in getNetworkInterfaceName()
180 return mLinkProperties.getInterfaceName(); in getNetworkInterfaceName()
DProxyDataTracker.java107 mLinkProperties = new LinkProperties(); in ProxyDataTracker()
111 mLinkProperties.addDnsServer(InetAddress.getByName(DNS1)); in ProxyDataTracker()
112 mLinkProperties.addDnsServer(InetAddress.getByName(DNS2)); in ProxyDataTracker()
113 mLinkProperties.setInterfaceName(INTERFACE_NAME); in ProxyDataTracker()
DMobileDataStateTracker.java68 private LinkProperties mLinkProperties; field in MobileDataStateTracker
194 mLinkProperties = intent.getParcelableExtra( in updateLinkProperitesAndCapatilities()
196 if (mLinkProperties == null) { in updateLinkProperitesAndCapatilities()
198 mLinkProperties = new LinkProperties(); in updateLinkProperitesAndCapatilities()
200 mLinkProperties.setMtu(mContext.getResources().getInteger( in updateLinkProperitesAndCapatilities()
312 if (mLinkProperties != null) { in onReceive()
313 Slog.d(TAG, "LinkProperties = " + mLinkProperties); in onReceive()
331 mLinkProperties = intent.getParcelableExtra( in onReceive()
333 if (mLinkProperties == null) { in onReceive()
335 mLinkProperties = new LinkProperties(); in onReceive()
[all …]
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
DEthernetNetworkFactory.java102 private LinkProperties mLinkProperties; field in EthernetNetworkFactory
106 mLinkProperties = new LinkProperties(); in EthernetNetworkFactory()
219 mLinkProperties = new LinkProperties(); in stopTrackingInterface()
249 mLinkProperties); in updateAgent()
253 mNetworkAgent.sendLinkProperties(mLinkProperties); in updateAgent()
309 mLinkProperties = linkProperties; in onRequestNetwork()
315 NETWORK_TYPE, mNetworkInfo, mNetworkCapabilities, mLinkProperties, in onRequestNetwork()
322 mLinkProperties.clear(); in onRequestNetwork()
411 mLinkProperties = new LinkProperties(); in stop()
468 pw.println("LinkProperties: " + mLinkProperties); in dump()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDataConnection.java178 private LinkProperties mLinkProperties = new LinkProperties(); field in DataConnection
278 return new LinkProperties(mLinkProperties); in getCopyLinkProperties()
294 mLinkProperties.setHttpProxy(proxy); in setLinkPropertiesHttpProxy()
309 Collection <InetAddress> addresses = mLinkProperties.getAddresses(); in isIpv4Connected()
326 Collection <InetAddress> addresses = mLinkProperties.getAddresses(); in isIpv6Connected()
342 UpdateLinkPropertyResult result = new UpdateLinkPropertyResult(mLinkProperties); in updateLinkProperty()
356 result.newLp.setHttpProxy(mLinkProperties.getHttpProxy()); in updateLinkProperty()
360 mLinkProperties = result.newLp; in updateLinkProperty()
371 mNetworkAgent.sendLinkProperties(mLinkProperties); in updateLinkProperty()
738 mLinkProperties = new LinkProperties(); in clearSettings()
[all …]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiStateMachine.java304 private LinkProperties mLinkProperties; field in WifiStateMachine
896 mLinkProperties = new LinkProperties(); in WifiStateMachine()
2427 pw.println("mLinkProperties " + mLinkProperties); in dump()
2873 if (mLinkProperties != null) { in getLogRecString()
2874 if (mLinkProperties.hasIPv4Address()) { in getLogRecString()
2877 if (mLinkProperties.hasGlobalIPv6Address()) { in getLogRecString()
2880 if (mLinkProperties.hasIPv4DefaultRoute()) { in getLogRecString()
2883 if (mLinkProperties.hasIPv6DefaultRoute()) { in getLogRecString()
2886 if (mLinkProperties.hasIPv4DnsServer()) { in getLogRecString()
2889 if (mLinkProperties.hasIPv6DnsServer()) { in getLogRecString()
[all …]
DWifiWatchdogStateMachine.java268 private LinkProperties mLinkProperties; field in WifiWatchdogStateMachine
423 pw.println("mLinkProperties: [" + mLinkProperties + "]"); in dump()
548 mLinkProperties = (LinkProperties) intent.getParcelableExtra( in processMessage()