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.java816 final long curTime = SystemClock.uptimeMillis();
818 reportLaunchTimeLocked(curTime);
822 final long thisTime = curTime - fullyDrawnStartTime;
824 ? (curTime - stack.mFullyDrawnStartTime) : thisTime;
851 private void reportLaunchTimeLocked(final long curTime) { argument
853 final long thisTime = curTime - displayStartTime;
855 ? (curTime - stack.mLaunchStartTime) : thisTime;
/frameworks/base/core/java/android/os/
H A DBatteryStats.java951 * @param curTime the amount of elapsed realtime in microseconds.
953 public abstract long getBatteryUptime(long curTime); argument
971 * @param curTime the amount of elapsed realtime in microseconds.
973 public abstract long getBatteryRealtime(long curTime); argument
1026 * @param curTime the elapsed realtime in microseconds.
1029 public abstract long computeBatteryUptime(long curTime, int which); argument
1034 * @param curTime the current elapsed realtime in microseconds.
1037 public abstract long computeBatteryRealtime(long curTime, int which); argument
1042 * @param curTime the current elapsed realtime in microseconds.
1045 public abstract long computeUptime(long curTime, in argument
1053 computeRealtime(long curTime, int which) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1000 private long computeOverage(long curTime) { argument
1002 return mLastTime + mLastAddedDuration - curTime;
1007 private void recomputeLastDuration(long curTime, boolean abort) { argument
1008 final long overage = computeOverage(curTime);
1019 mLastAddedTime = curTime;
1472 void addHistoryBufferLocked(long curTime) { argument
1477 final long timeDiff = (mHistoryBaseTime+curTime) - mHistoryLastWritten.time;
1496 curTime = mHistoryLastWritten.time - mHistoryBaseTime;
1506 addHistoryBufferLocked(curTime, HistoryItem.CMD_OVERFLOW);
1521 addHistoryBufferLocked(curTime, HistoryIte
1524 addHistoryBufferLocked(long curTime, byte cmd) argument
1545 addHistoryRecordLocked(long curTime) argument
1604 addHistoryRecordLocked(long curTime, byte cmd) argument
4857 computeUptime(long curTime, int which) argument
4868 computeRealtime(long curTime, int which) argument
4879 computeBatteryUptime(long curTime, int which) argument
4894 computeBatteryRealtime(long curTime, int which) argument
4908 getBatteryUptimeLocked(long curTime) argument
4921 getBatteryUptime(long curTime) argument
4925 getBatteryRealtimeLocked(long curTime) argument
4934 getBatteryRealtime(long curTime) argument
[all...]

Completed in 879 milliseconds