Searched defs:LogSeverity (Results 1 - 2 of 2) sorted by relevance

/system/core/base/include/android-base/
H A Dlogging.h30 // Replace `INFO` with any severity from `enum LogSeverity`.
69 enum LogSeverity { enum in namespace:android::base
85 using LogFunction = std::function<void(LogId, LogSeverity, const char*, const char*,
89 void KernelLogger(LogId, LogSeverity, const char*, const char*, unsigned int, const char*);
90 void StderrLogger(LogId, LogSeverity, const char*, const char*, unsigned int, const char*);
101 void operator()(LogId, LogSeverity, const char* tag, const char* file,
155 // unqualified name for a LogSeverity, and returns a LogSeverity value.
404 LogSeverity severity, int error);
414 LogSeverity severit
[all...]
/system/extras/perfprofd/quipper/base/
H A Dlogging.h130 typedef int LogSeverity; typedef in namespace:logging
131 const LogSeverity LOG_VERBOSE = -1; // This is level 1 verbosity
134 const LogSeverity LOG_INFO = 0;
135 const LogSeverity LOG_WARNING = 1;
136 const LogSeverity LOG_ERROR = 2;
137 const LogSeverity LOG_FATAL = 3;
138 const LogSeverity LOG_NUM_SEVERITIES = 4;
376 const LogSeverity LOG_DCHECK = LOG_FATAL;
384 const LogSeverity LOG_DCHECK = LOG_INFO;
460 LogMessage(const char* file, int line, LogSeverity severit
[all...]

Completed in 119 milliseconds