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.java362 int curState, long curStartTime, long now) { in dumpSingleTime() argument
372 time += now - curStartTime; in dumpSingleTime()
402 int curState, long curStartTime, long now) { in dumpAdjTimesCheckin() argument
408 time += now - curStartTime; in dumpAdjTimesCheckin()
/frameworks/base/services/usage/java/com/android/server/usage/
DIntervalStats.java87 public long curStartTime; field in IntervalStats.EventTracker
93 if (curStartTime != 0) { in commitTime()
94 duration += timeStamp - curStartTime; in commitTime()
95 curStartTime = 0; in commitTime()
100 if (curStartTime == 0) { in update()
105 curStartTime = timeStamp; in update()
DUserUsageStatsService.java967 if (tracker.curStartTime != 0) { in printEventAggregation()
969 formatDateTime(tracker.curStartTime, prettyDates); in printEventAggregation()