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

/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiLogger.java110 long curTime = SystemClock.uptimeMillis();
112 if (shouldLogNow(timing, curTime)) {
114 cache.put(logMessage, new Pair<>(curTime, 1));
136 private static boolean shouldLogNow(@Nullable Pair<Long, Integer> timing, long curTime) { argument
137 return timing == null || curTime - timing.first > ERROR_LOG_DURATTION_MILLIS;
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyService.cpp669 nsecs_t curTime = systemTime(); local
671 if (mAudioCommands[0]->mTime <= curTime) {
836 waitTime = mAudioCommands[0]->mTime - curTime;
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.cpp1077 String8 curTime = getFormattedCurrentTime(); local
1082 "(PID %d, score %d state %d) due to eviction policy", curTime.string(),
1859 String8 curTime = getFormattedCurrentTime(); local
1892 String8 curTime = getFormattedCurrentTime(); local
1894 mEventLog.add(String8::format("%s : %s", curTime.string(), event));
1946 String8 curTime = getFormattedCurrentTime(); local
/frameworks/base/services/core/java/com/android/server/am/
H A DActivityRecord.java1994 final long curTime = SystemClock.uptimeMillis();
1996 reportLaunchTimeLocked(curTime);
2001 final long thisTime = curTime - fullyDrawnStartTime;
2003 ? (curTime - entry.mFullyDrawnStartTime) : thisTime;
2032 private void reportLaunchTimeLocked(final long curTime) { argument
2038 final long thisTime = curTime - displayStartTime;
2040 ? (curTime - entry.mLaunchStartTime) : thisTime;
/frameworks/base/core/java/android/os/
H A DBatteryStats.java2675 * @param curTime the amount of elapsed realtime in microseconds.
2677 public abstract long getBatteryUptime(long curTime); argument
2682 * @param curTime the amount of elapsed realtime in microseconds.
2684 public abstract long getBatteryRealtime(long curTime); argument
2754 * @param curTime the elapsed realtime in microseconds.
2757 public abstract long computeBatteryUptime(long curTime, int which); argument
2762 * @param curTime the current elapsed realtime in microseconds.
2765 public abstract long computeBatteryRealtime(long curTime, int which); argument
2770 * @param curTime the elapsed realtime in microseconds.
2773 public abstract long computeBatteryScreenOffUptime(long curTime, in argument
2781 computeBatteryScreenOffRealtime(long curTime, int which) argument
2789 computeUptime(long curTime, int which) argument
2797 computeRealtime(long curTime, int which) argument
2807 computeBatteryTimeRemaining(long curTime) argument
2941 computeChargeTimeRemaining(long curTime) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java1154 public long computeUptime(long curTime, int which) { argument
1157 return mUptime + getUptime(curTime);
1159 return getUptime(curTime);
1161 return getUptime(curTime) - mUnpluggedUptime;
1166 public long computeRealtime(long curTime, int which) { argument
1169 return mRealtime + getRealtime(curTime);
1171 return getRealtime(curTime);
1173 return getRealtime(curTime) - mUnpluggedRealtime;
1178 public long getUptime(long curTime) { argument
1181 time += curTime
1186 getRealtime(long curTime) argument
2141 computeOverage(long curTime) argument
2148 recomputeLastDuration(long curTime, boolean abort) argument
12764 computeUptime(long curTime, int which) argument
12774 computeRealtime(long curTime, int which) argument
12784 computeBatteryUptime(long curTime, int which) argument
12789 computeBatteryRealtime(long curTime, int which) argument
12794 computeBatteryScreenOffUptime(long curTime, int which) argument
12799 computeBatteryScreenOffRealtime(long curTime, int which) argument
12842 computeBatteryTimeRemaining(long curTime) argument
12880 computeChargeTimeRemaining(long curTime) argument
13035 getBatteryUptime(long curTime) argument
13040 getBatteryRealtime(long curTime) argument
[all...]

Completed in 944 milliseconds