Home
last modified time | relevance | path

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

/frameworks/av/services/mediaresourcemanager/
DServiceLog.cpp30 ServiceLog::ServiceLog() : mMaxNum(kDefaultMaxNum), mLogs(mMaxNum) {} in ServiceLog()
31 ServiceLog::ServiceLog(size_t maxNum) : mMaxNum(maxNum), mLogs(mMaxNum) {} in ServiceLog()
38 mLogs.add(String8::format("%s %s", buf, log.string())); in add()
44 for (const auto& log : mLogs) { in toString()
47 if (mLogs.size() == mMaxNum) { in toString()
49 } else if (mLogs.size() == 0) { in toString()
DServiceLog.h41 RingBuffer<String8> mLogs; variable
/frameworks/av/services/audioflinger/
DAudioWatchdog.h33 AudioWatchdogDump() : mUnderruns(0), mLogs(0), mMostRecent(0) { } in AudioWatchdogDump()
36 uint32_t mLogs; // total number of log messages member
48 mOldTsValid(false), mUnderruns(0), mLogs(0), mDump(&mDummyDump) in Thread()
81 uint32_t mLogs; // total number of logs variable
DAudioWatchdog.cpp38 mUnderruns, mLogs, buf); in dump()
91 mDump->mLogs = ++mLogs; in threadLoop()
94 mPeriodNs * 1e-6, cycleNs * 1e-6, mUnderruns, mLogs); in threadLoop()