Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/connectivity/tethering/
DOffloadController.java504 final Set<String> localPrefixStrs = computeLocalPrefixStrings( in computeAndPushLocalPrefixes() local
506 if (!force && mLastLocalPrefixStrs.equals(localPrefixStrs)) return true; in computeAndPushLocalPrefixes()
508 mLastLocalPrefixStrs = localPrefixStrs; in computeAndPushLocalPrefixes()
509 return mHwInterface.setLocalPrefixes(new ArrayList<>(localPrefixStrs)); in computeAndPushLocalPrefixes()
536 final HashSet<String> localPrefixStrs = new HashSet<>(); in computeLocalPrefixStrings() local
537 for (IpPrefix pfx : prefixSet) localPrefixStrs.add(pfx.toString()); in computeLocalPrefixStrings()
538 return localPrefixStrs; in computeLocalPrefixStrings()