Searched refs:tunIfaceTotal (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/net/ |
D | NetworkStats.java | 1125 Entry tunIfaceTotal = new Entry(); in migrateTun() local 1128 tunAdjustmentInit(tunUid, tunIface, underlyingIface, tunIfaceTotal, underlyingIfaceTotal); in migrateTun() 1133 Entry pool = tunGetPool(tunIfaceTotal, underlyingIfaceTotal); in migrateTun() 1138 addTrafficToApplications(tunUid, tunIface, underlyingIface, tunIfaceTotal, pool); in migrateTun() 1158 Entry tunIfaceTotal, Entry underlyingIfaceTotal) { in tunAdjustmentInit() argument 1178 tunIfaceTotal.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() [all …]
|