Home | History | Annotate | Download | only in connectivity

Lines Matching refs:LinkProperties

27 import android.net.LinkProperties;
51 // ConnectivityService Handler for LinkProperties updates.
90 (nai.linkProperties != null) ? nai.linkProperties.hasIPv4Address() : false;
122 if (mNetwork.linkProperties == null) {
123 Slog.e(TAG, "startClat: Can't start clat with null LinkProperties");
134 mBaseIface = mNetwork.linkProperties.getInterfaceName();
168 private void updateConnectivityService(LinkProperties lp) {
176 * Copies the stacked clat link in oldLp, if any, to the LinkProperties in mNetwork.
177 * This is necessary because the LinkProperties in mNetwork come from the transport layer, which
180 public void fixupLinkProperties(LinkProperties oldLp) {
183 mNetwork.linkProperties != null &&
184 !mNetwork.linkProperties.getAllInterfaceNames().contains(mIface)) {
186 for (LinkProperties stacked: oldLp.getStackedLinks()) {
188 mNetwork.linkProperties.addStackedLink(stacked);
195 private LinkProperties makeLinkProperties(LinkAddress clatAddress) {
196 LinkProperties stacked = new LinkProperties();
248 LinkProperties lp = new LinkProperties(mNetwork.linkProperties);
276 LinkProperties lp = new LinkProperties(mNetwork.linkProperties);