Home
last modified time | relevance | path

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

/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
DDcController.java355 if (result.oldLp.equals(result.newLp)) { in onDataStateChanged()
359 result.oldLp, result.newLp)) { in onDataStateChanged()
361 result.oldLp, result.newLp) in onDataStateChanged()
363 result.oldLp, result.newLp) in onDataStateChanged()
365 result.oldLp, result.newLp) in onDataStateChanged()
367 result.oldLp, result.newLp)) { in onDataStateChanged()
371 LinkPropertiesUtils.compareAddresses(result.oldLp, in onDataStateChanged()
374 log("onDataStateChanged: oldLp=" + result.oldLp + in onDataStateChanged()
392 + " oldLp=" + result.oldLp in onDataStateChanged()
DDataConnection.java481 public LinkProperties oldLp; field in DataConnection.UpdateLinkPropertyResult
484 oldLp = curLp; in UpdateLinkPropertyResult()
568 if (DBG && (! result.oldLp.equals(result.newLp))) { in updateLinkProperty()
569 log("updateLinkProperty old LP=" + result.oldLp); in updateLinkProperty()
573 if (result.newLp.equals(result.oldLp) == false && in updateLinkProperty()
/frameworks/base/packages/Tethering/src/com/android/networkstack/tethering/
DOffloadController.java526 final LinkProperties oldLp = mDownstreams.put(ifname, new LinkProperties(lp)); in notifyDownstreamLinkProperties() local
527 if (Objects.equals(oldLp, lp)) return; in notifyDownstreamLinkProperties()
530 pushDownstreamState(oldLp, lp); in notifyDownstreamLinkProperties()
533 private void pushDownstreamState(LinkProperties oldLp, LinkProperties newLp) { in pushDownstreamState() argument
536 (oldLp != null) ? oldLp.getRoutes() : Collections.EMPTY_LIST; in pushDownstreamState()
/frameworks/base/services/core/java/com/android/server/connectivity/
DNat464Xlat.java409 public void fixupLinkProperties(@NonNull LinkProperties oldLp, @NonNull LinkProperties lp) { in fixupLinkProperties() argument
422 for (LinkProperties stacked: oldLp.getStackedLinks()) { in fixupLinkProperties()
/frameworks/base/services/core/java/com/android/server/
DConnectivityService.java2391 private void updateMtu(LinkProperties newLp, LinkProperties oldLp) { in updateMtu() argument
2394 if (oldLp == null && mtu == 0) { in updateMtu()
2398 if (oldLp != null && newLp.isIdenticalMtu(oldLp)) { in updateMtu()
4435 private void updateProxy(LinkProperties newLp, LinkProperties oldLp) { in updateProxy() argument
4437 ProxyInfo oldProxyInfo = oldLp == null ? null : oldLp.getHttpProxy(); in updateProxy()
5951 @NonNull LinkProperties oldLp) { in updateLinkProperties() argument
5957 networkAgent.clatd.fixupLinkProperties(oldLp, newLp); in updateLinkProperties()
5959 updateInterfaces(newLp, oldLp, netId, networkAgent.networkCapabilities, in updateLinkProperties()
5964 updateVpnFiltering(newLp, oldLp, networkAgent); in updateLinkProperties()
5966 updateMtu(newLp, oldLp); in updateLinkProperties()
[all …]
/frameworks/base/tests/net/java/com/android/server/connectivity/
DNat464XlatTest.java147 LinkProperties oldLp = new LinkProperties(mNai.linkProperties);
185 mNai.linkProperties = new LinkProperties(oldLp);