Home
last modified time | relevance | path

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

/frameworks/av/media/utils/
DThreadSnapshot.cpp67 mEndTimeNs = -1; in reset()
73 if (mBeginTimeNs < mEndTimeNs) { in onBegin()
80 if (mEndTimeNs < mBeginTimeNs) { in onEnd()
81 mEndTimeNs = systemTime(); in onEnd()
82 mCumulativeTimeNs += mEndTimeNs - mBeginTimeNs; in onEnd()
92 int64_t diffNs = mEndTimeNs - mBeginTimeNs; // if onEnd() isn't matched, diffNs < 0. in toString()
/frameworks/av/media/utils/include/mediautils/
DThreadSnapshot.h62 int64_t mEndTimeNs; // when last run ends (if less than begin time, not started) member