Home
last modified time | relevance | path

Searched refs:oldLp (Results 1 – 5 of 5) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcController.java348 if (result.oldLp.equals(result.newLp)) { in onDataStateChanged()
351 if (result.oldLp.isIdenticalInterfaceName(result.newLp)) { in onDataStateChanged()
352 if (! result.oldLp.isIdenticalDnses(result.newLp) || in onDataStateChanged()
353 ! result.oldLp.isIdenticalRoutes(result.newLp) || in onDataStateChanged()
354 ! result.oldLp.isIdenticalHttpProxy(result.newLp) || in onDataStateChanged()
355 ! result.oldLp.isIdenticalAddresses(result.newLp)) { in onDataStateChanged()
359 result.oldLp.compareAddresses(result.newLp); in onDataStateChanged()
361 log("onDataStateChanged: oldLp=" + result.oldLp + in onDataStateChanged()
379 + " oldLp=" + result.oldLp in onDataStateChanged()
/frameworks/base/services/core/java/com/android/server/connectivity/tethering/
DOffloadController.java388 final LinkProperties oldLp = mDownstreams.put(ifname, new LinkProperties(lp)); in notifyDownstreamLinkProperties() local
389 if (Objects.equals(oldLp, lp)) return; in notifyDownstreamLinkProperties()
392 pushDownstreamState(oldLp, lp); in notifyDownstreamLinkProperties()
395 private void pushDownstreamState(LinkProperties oldLp, LinkProperties newLp) { in pushDownstreamState() argument
398 (oldLp != null) ? oldLp.getRoutes() : Collections.EMPTY_LIST; in pushDownstreamState()
/frameworks/base/services/core/java/com/android/server/connectivity/
DNat464Xlat.java328 public void fixupLinkProperties(LinkProperties oldLp, LinkProperties lp) { in fixupLinkProperties() argument
339 for (LinkProperties stacked: oldLp.getStackedLinks()) { in fixupLinkProperties()
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java2208 private void updateMtu(LinkProperties newLp, LinkProperties oldLp) { in updateMtu() argument
2211 if (oldLp == null && mtu == 0) { in updateMtu()
2215 if (oldLp != null && newLp.isIdenticalMtu(oldLp)) { in updateMtu()
4208 private void updateProxy(LinkProperties newLp, LinkProperties oldLp) { in updateProxy() argument
4210 ProxyInfo oldProxyInfo = oldLp == null ? null : oldLp.getHttpProxy(); in updateProxy()
5520 LinkProperties oldLp) { in updateLinkProperties() argument
5526 networkAgent.clatd.fixupLinkProperties(oldLp, newLp); in updateLinkProperties()
5528 updateInterfaces(newLp, oldLp, netId, networkAgent.networkCapabilities); in updateLinkProperties()
5532 updateVpnFiltering(newLp, oldLp, networkAgent); in updateLinkProperties()
5534 updateMtu(newLp, oldLp); in updateLinkProperties()
[all …]
/frameworks/base/tests/net/java/com/android/server/connectivity/
DNat464XlatTest.java136 LinkProperties oldLp = new LinkProperties(mNai.linkProperties);
174 mNai.linkProperties = new LinkProperties(oldLp);