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.java379 int curState, long curStartTime, long now) { in dumpSingleTime() argument
389 time += now - curStartTime; in dumpSingleTime()
419 int curState, long curStartTime, long now) { in dumpAdjTimesCheckin() argument
425 time += now - curStartTime; in dumpAdjTimesCheckin()
/frameworks/base/services/usage/java/com/android/server/usage/
DIntervalStats.java88 public long curStartTime; field in IntervalStats.EventTracker
94 if (curStartTime != 0) { in commitTime()
95 duration += timeStamp - curStartTime; in commitTime()
96 curStartTime = 0; in commitTime()
101 if (curStartTime == 0) { in update()
106 curStartTime = timeStamp; in update()
DUserUsageStatsService.java972 if (tracker.curStartTime != 0) { in printEventAggregation()
974 formatDateTime(tracker.curStartTime, prettyDates); in printEventAggregation()