Home
last modified time | relevance | path

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

/frameworks/av/services/mediaresourcemanager/
DServiceLog.cpp30 ServiceLog::ServiceLog() : mMaxNum(kDefaultMaxNum), mLogs(mMaxNum) {} in ServiceLog() function in android::ServiceLog
31 ServiceLog::ServiceLog(size_t maxNum) : mMaxNum(maxNum), mLogs(mMaxNum) {} in ServiceLog() function in android::ServiceLog
33 void ServiceLog::add(const String8 &log) { in add()
41 String8 ServiceLog::toString(const char *linePrefix) const { in toString()
55 void ServiceLog::addLine(const char *log, const char *prefix, String8 *result) const { in addLine()
DServiceLog.h30 class ServiceLog : public RefBase {
32 ServiceLog();
33 explicit ServiceLog(size_t maxNum);
DResourceManagerService.h38 class ServiceLog; variable
248 sp<ServiceLog> mServiceLog;
DAndroid.bp86 "ServiceLog.cpp",
DResourceManagerService.cpp178 mServiceLog(new ServiceLog()), in ResourceManagerService()
/frameworks/av/services/mediaresourcemanager/test/
DServiceLog_test.cpp29 ServiceLogTest() : mServiceLog(new ServiceLog(3)) { in ServiceLogTest()
33 sp<ServiceLog> mServiceLog;
/frameworks/av/services/mediaresourcemanager/fuzzer/
Dmediaresourcemanager_fuzzer.cpp297 sp<ServiceLog> serviceLog = new ServiceLog(maxNum); in setServiceLog()