Home
last modified time | relevance | path

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

/frameworks/av/media/libaudioclient/include/media/
DAudioRecord.h750 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
/frameworks/av/media/libaudioclient/
DAudioRecord.cpp96 if (mStartedNs != 0) { in gather()
97 activeNs = systemTime() - mStartedNs; in gather()