Searched refs:mTotalTime (Results 1 - 5 of 5) sorted by path

/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java879 long mTotalTime; field in class:BatteryStatsImpl.Timer
883 * mTotalTime to find the time for the current run of the system.
894 * The value of mTotalTime when unplug() was last called. Subtract
895 * this from mTotalTime to find the time since the last unplug from
914 mTotalTime = in.readLong();
919 if (DEBUG) Log.i(TAG, "**** READ TIMER #" + mType + ": mTotalTime=" + mTotalTime);
937 mTotalTime = mLoadedTime = mLastTime = 0;
950 if (DEBUG) Log.i(TAG, "**** WRITING TIMER #" + mType + ": mTotalTime="
978 + " old mTotalTime
1837 public long mTotalTime; field in class:BatteryStatsImpl.KernelWakelockStats
[all...]
/frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
H A DBaselineButtonsTest.java30 private View mTotalTime; field in class:BaselineButtonsTest
46 mTotalTime = activity.findViewById(R.id.totaltime);
56 assertNotNull(mTotalTime);
82 assertEquals("TotalTime wrong bottom", pauseHeight, mTotalTime.getBottom());
84 assertTrue("TotalTime too tall", mTotalTime.getTop() > 0);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DStopWatchMap.java33 private long mTotalTime; field in class:StopWatch
39 mTotalTime = 0;
57 mTotalTime += stopTime - mStartTime;
62 String.format("%.1f", mTotalTime * 1.0f / mNumCalls));
63 mTotalTime = 0;
/frameworks/base/services/core/java/com/android/server/location/
H A DComprehensiveCountryDetector.java115 private long mTotalTime; field in class:ComprehensiveCountryDetector
302 mTotalTime += mStopTime;
482 sb.append("totalTime=" + (mTotalTime + currentSessionLength) + ", ");
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsPresenter.java58 final TextView mTotalTime; field in class:PlaybackControlsPresenter.ViewHolder
70 mTotalTime = (TextView) rootView.findViewById(R.id.total_time);
91 ((MarginLayoutParams) mTotalTime.getLayoutParams()).getMarginEnd();
141 mTotalTime.setVisibility(View.GONE);
144 mTotalTime.setVisibility(View.VISIBLE);
147 mTotalTime.setText(mTotalTimeStringBuilder.toString());
271 lp = (MarginLayoutParams) vh.mTotalTime.getLayoutParams();
273 vh.mTotalTime.setLayoutParams(lp);

Completed in 228 milliseconds