Migrate to refactored NetworkStats API.
Change-Id: I76452a67b74df873c88cb9092188e5e4ba83b991
This commit is contained in:
@@ -745,9 +745,13 @@ public class DataUsageSummary extends Fragment {
|
||||
|
||||
long start = currentTime;
|
||||
long end = currentTime;
|
||||
if (history.bucketCount > 0) {
|
||||
start = history.bucketStart[0];
|
||||
end = history.bucketStart[history.bucketCount - 1];
|
||||
|
||||
NetworkStatsHistory.Entry entry = null;
|
||||
if (history.size() > 0) {
|
||||
entry = history.getValues(0, entry);
|
||||
start = entry.bucketStart;
|
||||
entry = history.getValues(history.size() - 1, entry);
|
||||
end = entry.bucketStart + entry.bucketDuration;
|
||||
}
|
||||
|
||||
return new long[] { start, end };
|
||||
@@ -1081,11 +1085,12 @@ public class DataUsageSummary extends Fragment {
|
||||
mItems.clear();
|
||||
|
||||
if (stats != null) {
|
||||
for (int i = 0; i < stats.size; i++) {
|
||||
final long total = stats.rx[i] + stats.tx[i];
|
||||
NetworkStats.Entry entry = null;
|
||||
for (int i = 0; i < stats.size(); i++) {
|
||||
entry = stats.getValues(i, entry);
|
||||
final AppUsageItem item = new AppUsageItem();
|
||||
item.uid = stats.uid[i];
|
||||
item.total = total;
|
||||
item.uid = entry.uid;
|
||||
item.total = entry.rxBytes + entry.txBytes;
|
||||
mItems.add(item);
|
||||
}
|
||||
}
|
||||
|
@@ -140,7 +140,7 @@ public class ChartNetworkSeriesView extends View {
|
||||
mPathFill.reset();
|
||||
|
||||
// bail when not enough stats to render
|
||||
if (mStats == null || mStats.bucketCount < 2) return;
|
||||
if (mStats == null || mStats.size() < 2) return;
|
||||
|
||||
final int width = getWidth();
|
||||
final int height = getHeight();
|
||||
@@ -155,8 +155,11 @@ public class ChartNetworkSeriesView extends View {
|
||||
|
||||
long totalData = 0;
|
||||
|
||||
for (int i = 0; i < mStats.bucketCount; i++) {
|
||||
final float x = mHoriz.convertToPoint(mStats.bucketStart[i]);
|
||||
NetworkStatsHistory.Entry entry = null;
|
||||
for (int i = 0; i < mStats.size(); i++) {
|
||||
entry = mStats.getValues(i, entry);
|
||||
|
||||
final float x = mHoriz.convertToPoint(entry.bucketStart);
|
||||
final float y = mVert.convertToPoint(totalData);
|
||||
|
||||
// skip until we find first stats on screen
|
||||
@@ -170,7 +173,7 @@ public class ChartNetworkSeriesView extends View {
|
||||
if (started) {
|
||||
mPathStroke.lineTo(x, y);
|
||||
mPathFill.lineTo(x, y);
|
||||
totalData += mStats.rx[i] + mStats.tx[i];
|
||||
totalData += entry.rxBytes + entry.txBytes;
|
||||
}
|
||||
|
||||
// skip if beyond view
|
||||
|
Reference in New Issue
Block a user