Searched refs:mStartedNs (Results 1 – 2 of 2) sorted by relevance
750 mStartedNs(0), mDurationNs(0), mCount(0), in MediaMetrics()763 void logStart(nsecs_t when) { mStartedNs = when; mCount++; } in logStart()764 void logStop(nsecs_t when) { mDurationNs += (when-mStartedNs); mStartedNs = 0;} in logStop()770 nsecs_t mStartedNs; variable
96 if (mStartedNs != 0) { in gather()97 activeNs = systemTime() - mStartedNs; in gather()