Home | History | Annotate | Download | only in os

Lines Matching refs:mCounts

1039         public long[] mCounts;
1047 mCounts = copyArray(mPluggedCounts, mCounts);
1059 out.writeLongArray(mCounts);
1071 mPluggedCounts = copyArray(mCounts, mPluggedCounts);
1076 long[] val = copyArray(mTimeBase.isRunning() ? mCounts : mPluggedCounts, null);
1087 pw.println(prefix + "mCounts=" + Arrays.toString(mCounts)
1098 if (mCounts == null) {
1099 mCounts = new long[counts.length];
1102 mCounts[i] += counts[i];
1108 return mCounts == null ? 0 : mCounts.length;
1115 fillArray(mCounts, 0);
1129 out.writeLongArray(mCounts);
1133 mCounts = in.createLongArray();
1134 mLoadedCounts = copyArray(mCounts, mLoadedCounts);
1135 mUnpluggedCounts = copyArray(mCounts, mUnpluggedCounts);
1136 mPluggedCounts = copyArray(mCounts, mPluggedCounts);