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.cpp47 if (it->second.state != kStopped) { in clone()
102 case kStopped: in noteStart()
127 case DurationState::kStopped: in noteStop()
134 duration.state = DurationState::kStopped; in noteStop()
152 duration.state = DurationState::kStopped; in noteStop()
164 if (duration.state == DurationState::kStopped) { in noteStop()
209 if (it->second.state == DurationState::kStopped) { in flushCurrentBucket()
252 if (pair.second.state == kStopped) { in onSlicedConditionMayChange()
299 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()