Home
last modified time | relevance | path

Searched refs:kStopped (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/cmds/statsd/src/metrics/duration_helper/
DMaxDurationTracker.cpp79 case kStopped: in noteStart()
103 case DurationState::kStopped: in noteStop()
110 duration.state = DurationState::kStopped; in noteStop()
128 duration.state = DurationState::kStopped; in noteStop()
140 if (duration.state == DurationState::kStopped) { in noteStop()
185 if (it->second.state == DurationState::kStopped) { in flushCurrentBucket()
228 if (pair.second.state == kStopped) { in onSlicedConditionMayChange()
274 case kStopped: in noteConditionChanged()
DDurationTracker.h30 kStopped = 0, // The event is stopped. enumerator
50 DurationInfo() : state(kStopped), startCount(0), lastStartTime(0), lastDuration(0){}; in DurationInfo()