Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DNetworkStats.java1126 Entry underlyingIfaceTotal = new Entry(); in migrateTun() local
1128 tunAdjustmentInit(tunUid, tunIface, underlyingIface, tunIfaceTotal, underlyingIfaceTotal); in migrateTun()
1133 Entry pool = tunGetPool(tunIfaceTotal, underlyingIfaceTotal); in migrateTun()
1158 Entry tunIfaceTotal, Entry underlyingIfaceTotal) { in tunAdjustmentInit() argument
1172 underlyingIfaceTotal.add(recycle); in tunAdjustmentInit()
1183 private static Entry tunGetPool(Entry tunIfaceTotal, Entry underlyingIfaceTotal) { in tunGetPool() argument
1185 pool.rxBytes = Math.min(tunIfaceTotal.rxBytes, underlyingIfaceTotal.rxBytes); in tunGetPool()
1186 pool.rxPackets = Math.min(tunIfaceTotal.rxPackets, underlyingIfaceTotal.rxPackets); in tunGetPool()
1187 pool.txBytes = Math.min(tunIfaceTotal.txBytes, underlyingIfaceTotal.txBytes); in tunGetPool()
1188 pool.txPackets = Math.min(tunIfaceTotal.txPackets, underlyingIfaceTotal.txPackets); in tunGetPool()
[all …]