Searched refs:mTotalTime (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DKernelWakelockStats.java26 public long mTotalTime; field in class:KernelWakelockStats.Entry
31 mTotalTime = totalTime;
H A DKernelWakelockReader.java169 kwlStats.mTotalTime += totalTime;
172 kwlStats.mTotalTime = totalTime;
H A DBatteryStatsImpl.java920 long mTotalTime; field in class:BatteryStatsImpl.Timer
924 * mTotalTime to find the time for the current run of the system.
935 * The value of mTotalTime when unplug() was last called. Subtract
936 * this from mTotalTime to find the time since the last unplug from
943 * Subtract this from mTotalTime to get the time spent running since the mark was set.
961 mTotalTime = in.readLong();
967 if (DEBUG) Log.i(TAG, "**** READ TIMER #" + mType + ": mTotalTime=" + mTotalTime);
985 mTotalTime = mLoadedTime = mLastTime = mTimeBeforeMark = 0;
998 if (DEBUG) Log.i(TAG, "**** WRITING TIMER #" + mType + ": mTotalTime
[all...]
/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/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/services/core/java/com/android/server/am/
H A DAppTimeTracker.java37 private long mTotalTime; field in class:AppTimeTracker
57 mTotalTime += elapsedTime;
71 mTotalTime += elapsedTime;
83 extras.putLong(ActivityOptions.EXTRA_USAGE_TIME_REPORT, mTotalTime);
106 pw.print(prefix); pw.print("mTotalTime=");
107 TimeUtils.formatDuration(mTotalTime, pw);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DPlaybackControlsPresenter.java59 final TextView mTotalTime; field in class:PlaybackControlsPresenter.ViewHolder
72 mTotalTime = (TextView) rootView.findViewById(R.id.total_time);
93 ((MarginLayoutParams) mTotalTime.getLayoutParams()).getMarginEnd();
144 mTotalTime.setVisibility(View.GONE);
147 mTotalTime.setVisibility(View.VISIBLE);
150 mTotalTime.setText(mTotalTimeStringBuilder.toString());
279 lp = (MarginLayoutParams) vh.mTotalTime.getLayoutParams();
281 vh.mTotalTime.setLayoutParams(lp);
/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/native/services/surfaceflinger/
H A DSurfaceFlinger.h507 nsecs_t mTotalTime; member in class:android::SurfaceFlinger
H A DSurfaceFlinger.cpp155 mTotalTime(0),
1064 mTotalTime += elapsedTime;
2676 static_cast<float>(mFrameBuckets[b]) / mTotalTime;
2682 static_cast<float>(mFrameBuckets[NUM_BUCKETS - 1]) / mTotalTime;

Completed in 196 milliseconds