Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/net/
DNetworkStats.java1193 Entry tunIfaceTotal = new Entry(); in migrateTun() local
1196 tunAdjustmentInit(tunUid, tunIface, underlyingIface, tunIfaceTotal, underlyingIfaceTotal); in migrateTun()
1201 Entry pool = tunGetPool(tunIfaceTotal, underlyingIfaceTotal); in migrateTun()
1206 addTrafficToApplications(tunUid, tunIface, underlyingIface, tunIfaceTotal, pool); in migrateTun()
1226 Entry tunIfaceTotal, Entry underlyingIfaceTotal) { in tunAdjustmentInit() argument
1246 tunIfaceTotal.add(recycle); in tunAdjustmentInit()
1251 private static Entry tunGetPool(Entry tunIfaceTotal, Entry underlyingIfaceTotal) { in tunGetPool() argument
1253 pool.rxBytes = Math.min(tunIfaceTotal.rxBytes, underlyingIfaceTotal.rxBytes); in tunGetPool()
1254 pool.rxPackets = Math.min(tunIfaceTotal.rxPackets, underlyingIfaceTotal.rxPackets); in tunGetPool()
1255 pool.txBytes = Math.min(tunIfaceTotal.txBytes, underlyingIfaceTotal.txBytes); in tunGetPool()
[all …]