Searched refs:curTime (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
H A DThroughputFilter.java84 long curTime = SystemClock.elapsedRealtime();
87 if ((curTime - mLastTime) >= (mPeriod * 1000)) {
97 mLastTime = curTime;
/frameworks/base/services/java/com/android/server/
H A DWatchdog.java341 * @param curTime The current system time.
345 String shouldWeBeBrutalLocked(long curTime) { argument
363 static long computeCalendarTime(Calendar c, long curTime, argument
367 c.setTimeInMillis(curTime);
378 if (newTime < curTime) {
H A DLocationManagerService.java1033 long curTime = ur.mMinTime;
1034 if (curTime < minTime) {
1035 minTime = curTime;
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1237 void addHistoryBufferLocked(long curTime) { argument
1242 final long timeDiff = (mHistoryBaseTime+curTime) - mHistoryLastWritten.time;
1261 curTime = mHistoryLastWritten.time - mHistoryBaseTime;
1271 addHistoryBufferLocked(curTime, HistoryItem.CMD_OVERFLOW);
1286 addHistoryBufferLocked(curTime, HistoryItem.CMD_UPDATE);
1289 void addHistoryBufferLocked(long curTime, byte cmd) { argument
1297 mHistoryLastWritten.setTo(mHistoryBaseTime + curTime, cmd, mHistoryCur);
1299 mLastHistoryTime = curTime;
1310 void addHistoryRecordLocked(long curTime) { argument
1311 addHistoryBufferLocked(curTime);
1369 addHistoryRecordLocked(long curTime, byte cmd) argument
4481 computeUptime(long curTime, int which) argument
4492 computeRealtime(long curTime, int which) argument
4503 computeBatteryUptime(long curTime, int which) argument
4518 computeBatteryRealtime(long curTime, int which) argument
4532 getBatteryUptimeLocked(long curTime) argument
4545 getBatteryUptime(long curTime) argument
4549 getBatteryRealtimeLocked(long curTime) argument
4558 getBatteryRealtime(long curTime) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java3214 long curTime = SystemClock.uptimeMillis();
3215 if ((mLastTrackballTime + MAX_TRACKBALL_DELAY) < curTime) {
3220 mLastTrackballTime = curTime;
3229 enqueueInputEvent(new KeyEvent(curTime, curTime,
3237 enqueueInputEvent(new KeyEvent(curTime, curTime,
3291 enqueueInputEvent(new KeyEvent(curTime, curTime,
3300 curTime
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java738 final long curTime = SystemClock.uptimeMillis();
739 final long thisTime = curTime - launchTime;
741 ? (curTime - stack.mInitialStartTime) : thisTime;
/frameworks/base/core/java/android/os/
H A DBatteryStats.java920 * @param curTime the amount of elapsed realtime in microseconds.
922 public abstract long getBatteryUptime(long curTime); argument
940 * @param curTime the amount of elapsed realtime in microseconds.
942 public abstract long getBatteryRealtime(long curTime); argument
995 * @param curTime the elapsed realtime in microseconds.
998 public abstract long computeBatteryUptime(long curTime, int which); argument
1003 * @param curTime the current elapsed realtime in microseconds.
1006 public abstract long computeBatteryRealtime(long curTime, int which); argument
1011 * @param curTime the current elapsed realtime in microseconds.
1014 public abstract long computeUptime(long curTime, in argument
1022 computeRealtime(long curTime, int which) argument
[all...]
/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp652 nsecs_t curTime = systemTime(); local
654 if (mAudioCommands[0]->mTime <= curTime) {
722 waitTime = mAudioCommands[0]->mTime - curTime;
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneWindowManager.java4339 long curTime = SystemClock.uptimeMillis();
4340 mPowerManager.userActivity(curTime, false, LocalPowerManager.OTHER_EVENT);

Completed in 277 milliseconds