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

/frameworks/base/core/java/android/net/
H A DNetworkStats.java950 Entry tunIfaceTotal = new Entry();
953 tunAdjustmentInit(tunUid, tunIface, underlyingIface, tunIfaceTotal, underlyingIfaceTotal);
958 Entry pool = tunGetPool(tunIfaceTotal, underlyingIfaceTotal);
963 addTrafficToApplications(tunUid, tunIface, underlyingIface, tunIfaceTotal, pool);
983 Entry tunIfaceTotal, Entry underlyingIfaceTotal) {
1003 tunIfaceTotal.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
982 tunAdjustmentInit(int tunUid, String tunIface, String underlyingIface, Entry tunIfaceTotal, Entry underlyingIfaceTotal) argument
1018 addTrafficToApplications(int tunUid, String tunIface, String underlyingIface, Entry tunIfaceTotal, Entry pool) argument
[all...]

Completed in 58 milliseconds