Home
last modified time | relevance | path

Searched refs:ServiceLog (Results 1 – 6 of 6) 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 ServiceLog(size_t maxNum);
DResourceManagerService.h33 class ServiceLog; variable
108 sp<ServiceLog> mServiceLog;
DAndroid.mk5 LOCAL_SRC_FILES := ResourceManagerService.cpp ServiceLog.cpp
DResourceManagerService.cpp138 mServiceLog(new ServiceLog()), in ResourceManagerService()
144 mServiceLog(new ServiceLog()), in ResourceManagerService()
/frameworks/av/services/mediaresourcemanager/test/
DServiceLog_test.cpp29 ServiceLogTest() : mServiceLog(new ServiceLog(3)) { in ServiceLogTest()
33 sp<ServiceLog> mServiceLog;