Searched defs:underlyingIfaceTotal (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/net/
H A DNetworkStats.java951 Entry underlyingIfaceTotal = new Entry();
953 tunAdjustmentInit(tunUid, tunIface, underlyingIface, tunIfaceTotal, underlyingIfaceTotal);
958 Entry pool = tunGetPool(tunIfaceTotal, underlyingIfaceTotal);
983 Entry tunIfaceTotal, Entry underlyingIfaceTotal) {
997 underlyingIfaceTotal.add(recycle);
1008 private static Entry tunGetPool(Entry tunIfaceTotal, Entry underlyingIfaceTotal) { argument
1010 pool.rxBytes = Math.min(tunIfaceTotal.rxBytes, underlyingIfaceTotal.rxBytes);
1011 pool.rxPackets = Math.min(tunIfaceTotal.rxPackets, underlyingIfaceTotal.rxPackets);
1012 pool.txBytes = Math.min(tunIfaceTotal.txBytes, underlyingIfaceTotal.txBytes);
1013 pool.txPackets = Math.min(tunIfaceTotal.txPackets, underlyingIfaceTotal
982 tunAdjustmentInit(int tunUid, String tunIface, String underlyingIface, Entry tunIfaceTotal, Entry underlyingIfaceTotal) argument
[all...]

Completed in 35 milliseconds