Searched refs:ServiceLog (Results 1 - 6 of 6) sorted by relevance

/frameworks/av/services/mediaresourcemanager/
H A DServiceLog.cpp19 #define LOG_TAG "ServiceLog"
24 #include "ServiceLog.h"
30 ServiceLog::ServiceLog() : mMaxNum(kDefaultMaxNum), mLogs(mMaxNum) {} function in class:android::ServiceLog
31 ServiceLog::ServiceLog(size_t maxNum) : mMaxNum(maxNum), mLogs(mMaxNum) {} function in class:android::ServiceLog
33 void ServiceLog::add(const String8 &log) {
41 String8 ServiceLog::toString(const char *linePrefix) const {
55 void ServiceLog::addLine(const char *log, const char *prefix, String8 *result) const {
H A DServiceLog.h30 class ServiceLog : public RefBase { class in namespace:android
32 ServiceLog();
33 explicit ServiceLog(size_t maxNum);
H A DAndroid.mk5 LOCAL_SRC_FILES := ResourceManagerService.cpp ServiceLog.cpp
H A DResourceManagerService.h33 class ServiceLog;
111 sp<ServiceLog> mServiceLog;
H A DResourceManagerService.cpp33 #include "ServiceLog.h"
202 mServiceLog(new ServiceLog()),
/frameworks/av/services/mediaresourcemanager/test/
H A DServiceLog_test.cpp23 #include "ServiceLog.h"
29 ServiceLogTest() : mServiceLog(new ServiceLog(3)) {
33 sp<ServiceLog> mServiceLog;

Completed in 644 milliseconds