Searched refs:oldLp (Results 1 - 4 of 4) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcController.java287 if (result.oldLp.equals(result.newLp)) {
290 if (result.oldLp.isIdenticalInterfaceName(result.newLp)) {
291 if (! result.oldLp.isIdenticalDnses(result.newLp) ||
292 ! result.oldLp.isIdenticalRoutes(result.newLp) ||
293 ! result.oldLp.isIdenticalHttpProxy(result.newLp) ||
294 ! result.oldLp.isIdenticalAddresses(result.newLp)) {
298 result.oldLp.compareAddresses(result.newLp);
300 log("onDataStateChanged: oldLp=" + result.oldLp +
318 " oldLp
[all...]
H A DDataConnection.java310 public LinkProperties oldLp; field in class:DataConnection.UpdateLinkPropertyResult
313 oldLp = curLp;
375 if (DBG && (! result.oldLp.equals(result.newLp))) {
376 log("updateLinkProperty old LP=" + result.oldLp);
380 if (result.newLp.equals(result.oldLp) == false &&
/frameworks/base/services/core/java/com/android/server/connectivity/
H A DNat464Xlat.java176 * Copies the stacked clat link in oldLp, if any, to the LinkProperties in mNetwork.
180 public void fixupLinkProperties(LinkProperties oldLp) { argument
186 for (LinkProperties stacked: oldLp.getStackedLinks()) {
/frameworks/base/services/core/java/com/android/server/
H A DConnectivityService.java1633 private void updateMtu(LinkProperties newLp, LinkProperties oldLp) { argument
1636 if (oldLp != null && newLp.isIdenticalMtu(oldLp)) {
1940 LinkProperties oldLp = nai.linkProperties;
1944 if (nai.created) updateLinkProperties(nai, oldLp);
2854 // If the proxy has changed from oldLp to newLp, resend proxy broadcast with default proxy.
2859 private void updateProxy(LinkProperties newLp, LinkProperties oldLp, NetworkAgentInfo nai) { argument
2861 ProxyInfo oldProxyInfo = oldLp == null ? null : oldLp.getHttpProxy();
3831 private void updateLinkProperties(NetworkAgentInfo networkAgent, LinkProperties oldLp) { argument
3871 updateClat(LinkProperties newLp, LinkProperties oldLp, NetworkAgentInfo nai) argument
3883 updateInterfaces(LinkProperties newLp, LinkProperties oldLp, int netId) argument
3912 updateRoutes(LinkProperties newLp, LinkProperties oldLp, int netId) argument
3957 updateDnses(LinkProperties newLp, LinkProperties oldLp, int netId, boolean flush, boolean useDefaultDns) argument
[all...]

Completed in 97 milliseconds