Home
last modified time | relevance | path

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

/aosp12/frameworks/av/media/libaudioclient/include/media/
H A DAudioRecord.h797 mStartedNs(0), mDurationNs(0), mCount(0), in MediaMetrics()
810 void logStart(nsecs_t when) { mStartedNs = when; mCount++; } in logStart()
811 void logStop(nsecs_t when) { mDurationNs += (when-mStartedNs); mStartedNs = 0;} in logStop()
817 nsecs_t mStartedNs; variable
/aosp12/frameworks/av/media/libaudioclient/
H A DAudioRecord.cpp100 if (mStartedNs != 0) { in gather()
101 activeNs = systemTime() - mStartedNs; in gather()