OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:servicelog
(Results
1 - 7
of
7
) sorted by null
/frameworks/av/services/mediaresourcemanager/
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 {
Android.mk
5
LOCAL_SRC_FILES := ResourceManagerService.cpp
ServiceLog
.cpp
ServiceLog.h
30
class
ServiceLog
: public RefBase {
32
ServiceLog
();
33
ServiceLog
(size_t maxNum);
ResourceManagerService.h
33
class
ServiceLog
;
108
sp<
ServiceLog
> mServiceLog;
ResourceManagerService.cpp
33
#include "
ServiceLog
.h"
123
String8
serviceLog
;
129
serviceLog
= mServiceLog->toString(" " /* linePrefix */);
166
result.append(
serviceLog
);
177
mServiceLog(new
ServiceLog
()),
/frameworks/av/services/mediaresourcemanager/test/
ServiceLog_test.cpp
23
#include "
ServiceLog
.h"
29
ServiceLogTest() : mServiceLog(new
ServiceLog
(3)) {
33
sp<
ServiceLog
> mServiceLog;
/packages/apps/Messaging/src/com/android/messaging/util/
LogUtil.java
222
LogSaver
serviceLog
= sDebugLogSaver;
223
if (
serviceLog
!= null && level >= android.util.Log.DEBUG) {
224
serviceLog
.log(level, tag, msg);
237
LogSaver
serviceLog
= sDebugLogSaver;
238
if (
serviceLog
!= null) {
239
serviceLog
.log(level, tag, msg);
Completed in 275 milliseconds