Home
last modified time | relevance | path

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

/system/media/audio_utils/include/audio_utils/
DSimpleLog.h142 mLog.emplace_back(nowNs, std::forward<U>(buffer)); in logs()
143 if (mLog.size() > mMaxLogLines) { in logs()
144 mLog.pop_front(); in logs()
160 lines = mLog.size();
165 auto it = mLog.begin();
168 if (mLog.size() > lines) {
169 it += (mLog.size() - lines);
171 for (; it != mLog.end(); ++it) {
208 std::deque<std::pair<int64_t, std::string>> mLog; // circular buffer is backed by deque. variable