Home
last modified time | relevance | path

Searched refs:curStartTime (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/app/procstats/
DServiceState.java458 int serviceType, int curState, long curStartTime, long now) {
459 return dumpTimeInternal(pw, prefix, serviceType, curState, curStartTime, now, false);
463 int serviceType, int curState, long curStartTime, long now, boolean negativeIfRunning) {
471 long time = getDuration(serviceType, curState, curStartTime, state, now);
519 int curState, long curStartTime, long now) {
547 time += now - curStartTime;
552 DumpUtils.printAdjTagAndValue(pw, curState, now - curStartTime);
589 int opCount, int curState, long curStartTime, long now) {
611 time += now - curStartTime;
628 now - curStartTime);
DDumpUtils.java377 int curState, long curStartTime, long now) { in dumpSingleTime() argument
387 time += now - curStartTime; in dumpSingleTime()
417 int curState, long curStartTime, long now) { in dumpAdjTimesCheckin() argument
423 time += now - curStartTime; in dumpAdjTimesCheckin()
/frameworks/base/services/usage/java/com/android/server/usage/
DIntervalStats.java91 public long curStartTime; field in IntervalStats.EventTracker
97 if (curStartTime != 0) { in commitTime()
98 duration += timeStamp - curStartTime; in commitTime()
99 curStartTime = 0; in commitTime()
104 if (curStartTime == 0) { in update()
109 curStartTime = timeStamp; in update()
DUserUsageStatsService.java1183 if (tracker.curStartTime != 0) { in printEventAggregation()
1185 formatDateTime(tracker.curStartTime, prettyDates); in printEventAggregation()