Home
last modified time | relevance | path

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

/frameworks/base/cmds/statsd/src/metrics/duration_helper/
DMaxDurationTracker.cpp48 it->second.lastStartTime = eventTime; in clone()
108 duration.lastStartTime = eventTime; in noteStart()
135 int64_t durationTime = eventTime - duration.lastStartTime; in noteStop()
137 (long long)duration.lastStartTime, (long long)eventTime, in noteStop()
291 it->second.lastDuration += (timestamp - it->second.lastStartTime); in noteConditionChanged()
307 it->second.lastStartTime = timestamp; in noteConditionChanged()
324 it->second.lastDuration + (currentTimestamp - it->second.lastStartTime); in predictAnomalyTimestampNs()
DDurationTracker.h44 int64_t lastStartTime; member
50 DurationInfo() : state(kStopped), startCount(0), lastStartTime(0), lastDuration(0){}; in DurationInfo()