Home
last modified time | relevance | path

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

/aosp12/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
H A DOffloadController.java715 final Set<String> localPrefixStrs = computeLocalPrefixStrings( in computeAndPushLocalPrefixes() local
717 if (!force && mLastLocalPrefixStrs.equals(localPrefixStrs)) return true; in computeAndPushLocalPrefixes()
719 mLastLocalPrefixStrs = localPrefixStrs; in computeAndPushLocalPrefixes()
720 return mHwInterface.setLocalPrefixes(new ArrayList<>(localPrefixStrs)); in computeAndPushLocalPrefixes()
747 final HashSet<String> localPrefixStrs = new HashSet<>(); in computeLocalPrefixStrings() local
748 for (IpPrefix pfx : prefixSet) localPrefixStrs.add(pfx.toString()); in computeLocalPrefixStrings()
749 return localPrefixStrs; in computeLocalPrefixStrings()