Home
last modified time | relevance | path

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

/frameworks/base/telephony/java/android/telephony/
DPreciseDataConnectionState.java55 private LinkProperties mLinkProperties = null; field in PreciseDataConnectionState
72 mLinkProperties = linkProperties; in PreciseDataConnectionState()
94 mLinkProperties = (LinkProperties)in.readParcelable(null); in PreciseDataConnectionState()
136 return mLinkProperties; in getDataConnectionLinkProperties()
157 out.writeParcelable(mLinkProperties, flags); in writeToParcel()
175 return Objects.hash(mState, mNetworkType, mAPNTypes, mAPN, mLinkProperties, in hashCode()
189 && Objects.equals(mLinkProperties, other.mLinkProperties) in equals()
202 sb.append(", Link properties: " + mLinkProperties); in toString()
/frameworks/base/core/java/com/android/server/net/
DNetlinkTracker.java78 private final LinkProperties mLinkProperties; field in NetlinkTracker
88 mLinkProperties = new LinkProperties(); in NetlinkTracker()
89 mLinkProperties.setInterfaceName(mInterfaceName); in NetlinkTracker()
125 changed = mLinkProperties.addLinkAddress(address); in addressUpdated()
139 changed = mLinkProperties.removeLinkAddress(address); in addressRemoved()
153 changed = mLinkProperties.addRoute(route); in routeUpdated()
167 changed = mLinkProperties.removeRoute(route); in routeRemoved()
182 mDnsServerRepository.setDnsServersOn(mLinkProperties); in interfaceDnsServerInfo()
194 return new LinkProperties(mLinkProperties); in getLinkProperties()
203 mLinkProperties.clear(); in clearLinkProperties()
[all …]
/frameworks/base/services/core/java/com/android/server/connectivity/
DNetworkDiagnostics.java102 private final LinkProperties mLinkProperties; field in NetworkDiagnostics
171 mLinkProperties = lp; in NetworkDiagnostics()
172 mInterfaceIndex = getInterfaceIndex(mLinkProperties.getInterfaceName()); in NetworkDiagnostics()
182 if (mLinkProperties.isReachable(TEST_DNS4)) { in NetworkDiagnostics()
183 mLinkProperties.addDnsServer(TEST_DNS4); in NetworkDiagnostics()
188 if (mLinkProperties.hasGlobalIpv6Address() || mLinkProperties.hasIpv6DefaultRoute()) { in NetworkDiagnostics()
189 mLinkProperties.addDnsServer(TEST_DNS6); in NetworkDiagnostics()
192 for (RouteInfo route : mLinkProperties.getRoutes()) { in NetworkDiagnostics()
201 for (InetAddress nameserver : mLinkProperties.getDnsServers()) { in NetworkDiagnostics()
210 mDescription = "ifaces{" + TextUtils.join(",", mLinkProperties.getAllInterfaceNames()) + "}" in NetworkDiagnostics()
[all …]
/frameworks/base/services/net/java/android/net/ip/
DIpServer.java190 private final LinkProperties mLinkProperties; field in IpServer
226 mLinkProperties = new LinkProperties(); in IpServer()
253 public LinkProperties linkProperties() { return new LinkProperties(mLinkProperties); } in linkProperties()
460 mLinkProperties.addLinkAddress(linkAddr); in configureIPv4()
461 mLinkProperties.addRoute(route); in configureIPv4()
463 mLinkProperties.removeLinkAddress(linkAddr); in configureIPv4()
464 mLinkProperties.removeRoute(route); in configureIPv4()
565 for (RouteInfo route : toBeRemoved) mLinkProperties.removeRoute(route); in configureLocalIPv6Routes()
588 for (RouteInfo route : toBeAdded) mLinkProperties.addRoute(route); in configureLocalIPv6Routes()
609 mLinkProperties.removeLinkAddress(new LinkAddress(dns, RFC7421_PREFIX_LENGTH)); in configureLocalIPv6Dns()
[all …]
/frameworks/opt/net/ethernet/java/com/android/server/ethernet/
DEthernetNetworkFactory.java253 private LinkProperties mLinkProperties = new LinkProperties(); field in NetworkInterfaceState
420 Log.w(TAG, "Network interface '" + mLinkProperties.getInterfaceName() + "' has no " in getNetworkScore()
458 mLinkProperties = linkProperties; in onIpLayerStarted()
464 NETWORK_TYPE, mNetworkInfo, mCapabilities, mLinkProperties, in onIpLayerStarted()
489 mLinkProperties = linkProperties; in updateLinkProperties()
535 mLinkProperties); in updateAgent()
539 mNetworkAgent.sendLinkProperties(mLinkProperties); in updateAgent()
548 mLinkProperties.clear(); in clear()
602 + "linkProperties: " + mLinkProperties in toString()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DClientModeImpl.java311 private LinkProperties mLinkProperties; field in ClientModeImpl
816 mLinkProperties = new LinkProperties(); in ClientModeImpl()
1279 mLinkProperties.getRoutes(), packetData.dstAddress).getGateway(); in getDstMacForKeepalive()
2024 pw.println("mLinkProperties " + mLinkProperties); in dump()
2377 if (mLinkProperties != null) { in getLogRecString()
2379 sb.append(getLinkPropertiesSummary(mLinkProperties)); in getLogRecString()
2425 if (mLinkProperties != null) { in getLogRecString()
2427 sb.append(getLinkPropertiesSummary(mLinkProperties)); in getLogRecString()
2752 + " old: " + mLinkProperties + " new: " + newLp); in updateLinkProperties()
2755 mLinkProperties = newLp; in updateLinkProperties()
[all …]