OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mLogs
(Results
1 - 4
of
4
) sorted by null
/frameworks/av/services/audioflinger/
AudioWatchdog.h
33
AudioWatchdogDump() : mUnderruns(0),
mLogs
(0), mMostRecent(0) { }
36
uint32_t
mLogs
; // total number of log messages
48
mOldTsValid(false), mUnderruns(0),
mLogs
(0), mDump(&mDummyDump)
81
uint32_t
mLogs
; // total number of logs
AudioWatchdog.cpp
38
mUnderruns,
mLogs
, buf);
91
mDump->
mLogs
= ++
mLogs
;
94
mPeriodNs * 1e-6, cycleNs * 1e-6, mUnderruns,
mLogs
);
/frameworks/av/services/mediaresourcemanager/
ServiceLog.cpp
30
ServiceLog::ServiceLog() : mMaxNum(kDefaultMaxNum),
mLogs
(mMaxNum) {}
31
ServiceLog::ServiceLog(size_t maxNum) : mMaxNum(maxNum),
mLogs
(mMaxNum) {}
38
mLogs
.add(String8::format("%s %s", buf, log.string()));
44
for (const auto& log :
mLogs
) {
47
if (
mLogs
.size() == mMaxNum) {
49
} else if (
mLogs
.size() == 0) {
ServiceLog.h
41
RingBuffer<String8>
mLogs
;
Completed in 273 milliseconds