HomeSort by relevance Sort by last modified time
    Searched defs:ServiceLog (Results 1 - 2 of 2) sorted by null

  /frameworks/av/services/mediaresourcemanager/
ServiceLog.h 30 class ServiceLog : public RefBase {
32 ServiceLog();
33 ServiceLog(size_t maxNum);
ServiceLog.cpp 19 #define LOG_TAG "ServiceLog"
24 #include "ServiceLog.h"
30 ServiceLog::ServiceLog() : mMaxNum(kDefaultMaxNum), mLogs(mMaxNum) {}
31 ServiceLog::ServiceLog(size_t maxNum) : mMaxNum(maxNum), mLogs(mMaxNum) {}
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 {

Completed in 78 milliseconds