Loading core/java/android/net/TrafficStats.java +10 −10 Original line number Diff line number Diff line Loading @@ -433,6 +433,10 @@ public class TrafficStats { } } private static long addIfSupported(long stat) { return (stat == UNSUPPORTED) ? 0 : stat; } /** * Return number of packets transmitted across mobile networks since device * boot. Counts packets across all mobile network interfaces, and always Loading @@ -445,7 +449,7 @@ public class TrafficStats { public static long getMobileTxPackets() { long total = 0; for (String iface : getMobileIfaces()) { total += getTxPackets(iface); total += addIfSupported(getTxPackets(iface)); } return total; } Loading @@ -462,7 +466,7 @@ public class TrafficStats { public static long getMobileRxPackets() { long total = 0; for (String iface : getMobileIfaces()) { total += getRxPackets(iface); total += addIfSupported(getRxPackets(iface)); } return total; } Loading @@ -479,7 +483,7 @@ public class TrafficStats { public static long getMobileTxBytes() { long total = 0; for (String iface : getMobileIfaces()) { total += getTxBytes(iface); total += addIfSupported(getTxBytes(iface)); } return total; } Loading @@ -496,7 +500,7 @@ public class TrafficStats { public static long getMobileRxBytes() { long total = 0; for (String iface : getMobileIfaces()) { total += getRxBytes(iface); total += addIfSupported(getRxBytes(iface)); } return total; } Loading @@ -511,9 +515,7 @@ public class TrafficStats { } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } if (stat != UNSUPPORTED) { total += stat; } total += addIfSupported(stat); } return total; } Loading @@ -528,9 +530,7 @@ public class TrafficStats { } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } if (stat != UNSUPPORTED) { total += stat; } total += addIfSupported(stat); } return total; } Loading Loading
core/java/android/net/TrafficStats.java +10 −10 Original line number Diff line number Diff line Loading @@ -433,6 +433,10 @@ public class TrafficStats { } } private static long addIfSupported(long stat) { return (stat == UNSUPPORTED) ? 0 : stat; } /** * Return number of packets transmitted across mobile networks since device * boot. Counts packets across all mobile network interfaces, and always Loading @@ -445,7 +449,7 @@ public class TrafficStats { public static long getMobileTxPackets() { long total = 0; for (String iface : getMobileIfaces()) { total += getTxPackets(iface); total += addIfSupported(getTxPackets(iface)); } return total; } Loading @@ -462,7 +466,7 @@ public class TrafficStats { public static long getMobileRxPackets() { long total = 0; for (String iface : getMobileIfaces()) { total += getRxPackets(iface); total += addIfSupported(getRxPackets(iface)); } return total; } Loading @@ -479,7 +483,7 @@ public class TrafficStats { public static long getMobileTxBytes() { long total = 0; for (String iface : getMobileIfaces()) { total += getTxBytes(iface); total += addIfSupported(getTxBytes(iface)); } return total; } Loading @@ -496,7 +500,7 @@ public class TrafficStats { public static long getMobileRxBytes() { long total = 0; for (String iface : getMobileIfaces()) { total += getRxBytes(iface); total += addIfSupported(getRxBytes(iface)); } return total; } Loading @@ -511,9 +515,7 @@ public class TrafficStats { } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } if (stat != UNSUPPORTED) { total += stat; } total += addIfSupported(stat); } return total; } Loading @@ -528,9 +530,7 @@ public class TrafficStats { } catch (RemoteException e) { throw e.rethrowFromSystemServer(); } if (stat != UNSUPPORTED) { total += stat; } total += addIfSupported(stat); } return total; } Loading