Home | History | Annotate | Download | only in settings

Lines Matching refs:total

1679         public long total;
1692 total = parcel.readLong();
1703 dest.writeLong(total);
1715 comparison = Long.compare(another.total, total);
1734 * Adapter of applications, sorted by total usage descending.
1816 item.total = -1;
1854 item.total += entry.rxBytes + entry.txBytes;
1855 if (mLargest < item.total) {
1856 mLargest = item.total;
1941 if (item.restricted && item.total <= 0) {
1945 summary.setText(Formatter.formatFileSize(context, item.total));
1949 final int percentTotal = mLargest != 0 ? (int) (item.total * 100 / mLargest) : 0;