Lines Matching refs:total
1413 public long total; field in DataUsageSummary.AppItem
1422 total = parcel.readLong(); in AppItem()
1433 dest.writeLong(total); in writeToParcel()
1443 return Long.compare(another.total, total); in compareTo()
1498 item.total += entry.rxBytes + entry.txBytes; in bindStats()
1501 systemItem.total += entry.rxBytes + entry.txBytes; in bindStats()
1510 item.total = -1; in bindStats()
1516 if (systemItem.total > 0) { in bindStats()
1521 mLargest = (mItems.size() > 0) ? mItems.get(0).total : 0; in bindStats()
1561 if (item.restricted && item.total <= 0) { in getView()
1565 text1.setText(Formatter.formatFileSize(context, item.total)); in getView()
1569 final int percentTotal = mLargest != 0 ? (int) (item.total * 100 / mLargest) : 0; in getView()