Searched defs:curTime (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/services/audioflinger/
H A DAudioPolicyService.cpp698 nsecs_t curTime = systemTime(); local
700 if (mAudioCommands[0]->mTime <= curTime) {
794 waitTime = mAudioCommands[0]->mTime - curTime;
/frameworks/base/services/java/com/android/server/am/
H A DActivityRecord.java821 final long curTime = SystemClock.uptimeMillis();
823 reportLaunchTimeLocked(curTime);
827 final long thisTime = curTime - fullyDrawnStartTime;
829 ? (curTime - stack.mFullyDrawnStartTime) : thisTime;
856 private void reportLaunchTimeLocked(final long curTime) { argument
858 final long thisTime = curTime - displayStartTime;
860 ? (curTime - stack.mLaunchStartTime) : thisTime;
/frameworks/base/core/java/android/os/
H A DBatteryStats.java962 * @param curTime the amount of elapsed realtime in microseconds.
964 public abstract long getBatteryUptime(long curTime); argument
982 * @param curTime the amount of elapsed realtime in microseconds.
984 public abstract long getBatteryRealtime(long curTime); argument
1037 * @param curTime the elapsed realtime in microseconds.
1040 public abstract long computeBatteryUptime(long curTime, int which); argument
1045 * @param curTime the current elapsed realtime in microseconds.
1048 public abstract long computeBatteryRealtime(long curTime, int which); argument
1053 * @param curTime the current elapsed realtime in microseconds.
1056 public abstract long computeUptime(long curTime, in argument
1064 computeRealtime(long curTime, int which) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1002 private long computeOverage(long curTime) { argument
1004 return mLastTime + mLastAddedDuration - curTime;
1009 private void recomputeLastDuration(long curTime, boolean abort) { argument
1010 final long overage = computeOverage(curTime);
1021 mLastAddedTime = curTime;
1474 void addHistoryBufferLocked(long curTime) { argument
1479 final long timeDiff = (mHistoryBaseTime+curTime) - mHistoryLastWritten.time;
1498 curTime = mHistoryLastWritten.time - mHistoryBaseTime;
1508 addHistoryBufferLocked(curTime, HistoryItem.CMD_OVERFLOW);
1523 addHistoryBufferLocked(curTime, HistoryIte
1526 addHistoryBufferLocked(long curTime, byte cmd) argument
1547 addHistoryRecordLocked(long curTime) argument
1606 addHistoryRecordLocked(long curTime, byte cmd) argument
4975 computeUptime(long curTime, int which) argument
4986 computeRealtime(long curTime, int which) argument
4997 computeBatteryUptime(long curTime, int which) argument
5012 computeBatteryRealtime(long curTime, int which) argument
5026 getBatteryUptimeLocked(long curTime) argument
5039 getBatteryUptime(long curTime) argument
5043 getBatteryRealtimeLocked(long curTime) argument
5052 getBatteryRealtime(long curTime) argument
[all...]

Completed in 3269 milliseconds