Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DUnderlyingNetworkInfo.java51 @NonNull List<String> underlyingIfaces) { in UnderlyingNetworkInfo() argument
53 Objects.requireNonNull(underlyingIfaces); in UnderlyingNetworkInfo()
56 mUnderlyingIfaces = Collections.unmodifiableList(new ArrayList<>(underlyingIfaces)); in UnderlyingNetworkInfo()
62 List<String> underlyingIfaces = new ArrayList<>(); in UnderlyingNetworkInfo() local
63 in.readList(underlyingIfaces, null /*classLoader*/); in UnderlyingNetworkInfo()
64 mUnderlyingIfaces = Collections.unmodifiableList(underlyingIfaces); in UnderlyingNetworkInfo()
DNetworkStats.java1428 @NonNull List<String> underlyingIfaces) { in migrateTun() argument
1432 final Entry[] perInterfaceTotal = new Entry[underlyingIfaces.size()]; in migrateTun()
1440 tunAdjustmentInit(tunUid, tunIface, underlyingIfaces, tunIfaceTotal, perInterfaceTotal, in migrateTun()
1447 addTrafficToApplications(tunUid, tunIface, underlyingIfaces, tunIfaceTotal, in migrateTun()
1449 deductTrafficFromVpnApp(tunUid, underlyingIfaces, moved); in migrateTun()
1473 @NonNull List<String> underlyingIfaces, @NonNull Entry tunIfaceTotal, in tunAdjustmentInit() argument
1516 for (int j = 0; j < underlyingIfaces.size(); j++) { in tunAdjustmentInit()
1517 if (Objects.equals(underlyingIfaces.get(j), recycle.iface)) { in tunAdjustmentInit()
1543 @NonNull List<String> underlyingIfaces, @NonNull Entry tunIfaceTotal, in addTrafficToApplications() argument
1547 final Entry[] moved = new Entry[underlyingIfaces.size()]; in addTrafficToApplications()
[all …]