Home
last modified time | relevance | path

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

/frameworks/base/packages/Tethering/src/com/android/networkstack/tethering/
DOffloadController.java644 final Set<String> localPrefixStrs = computeLocalPrefixStrings( in computeAndPushLocalPrefixes() local
646 if (!force && mLastLocalPrefixStrs.equals(localPrefixStrs)) return true; in computeAndPushLocalPrefixes()
648 mLastLocalPrefixStrs = localPrefixStrs; in computeAndPushLocalPrefixes()
649 return mHwInterface.setLocalPrefixes(new ArrayList<>(localPrefixStrs)); in computeAndPushLocalPrefixes()
676 final HashSet<String> localPrefixStrs = new HashSet<>(); in computeLocalPrefixStrings() local
677 for (IpPrefix pfx : prefixSet) localPrefixStrs.add(pfx.toString()); in computeLocalPrefixStrings()
678 return localPrefixStrs; in computeLocalPrefixStrings()