Searched defs:oldLp (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNat464Xlat.java163 // Copies the stacked clat link in oldLp, if any, to the LinkProperties in nai.
164 public void fixupLinkProperties(NetworkAgentInfo nai, LinkProperties oldLp) { argument
169 for (LinkProperties stacked: oldLp.getStackedLinks()) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDataConnection.java296 public LinkProperties oldLp; field in class:DataConnection.UpdateLinkPropertyResult
299 oldLp = curLp;
361 if (DBG && (! result.oldLp.equals(result.newLp))) {
362 log("updateLinkProperty old LP=" + result.oldLp);
366 if (result.newLp.equals(result.oldLp) == false &&
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java1578 private void updateMtu(LinkProperties newLp, LinkProperties oldLp) { argument
1581 if (oldLp != null && newLp.isIdenticalMtu(oldLp)) {
1842 LinkProperties oldLp = nai.linkProperties;
1846 if (nai.created) updateLinkProperties(nai, oldLp);
3546 private void updateLinkProperties(NetworkAgentInfo networkAgent, LinkProperties oldLp) { argument
3552 mClat.fixupLinkProperties(networkAgent, oldLp);
3554 updateInterfaces(newLp, oldLp, netId);
3555 updateMtu(newLp, oldLp);
3561 final boolean flushDns = updateRoutes(newLp, oldLp, netI
3571 updateClat(LinkProperties newLp, LinkProperties oldLp, NetworkAgentInfo na) argument
3583 updateInterfaces(LinkProperties newLp, LinkProperties oldLp, int netId) argument
3612 updateRoutes(LinkProperties newLp, LinkProperties oldLp, int netId) argument
3656 updateDnses(LinkProperties newLp, LinkProperties oldLp, int netId, boolean flush) argument
[all...]

Completed in 961 milliseconds