Home | History | Annotate | Download | only in android-base

Lines Matching defs:LogSeverity

30 // Replace `INFO` with any severity from `enum LogSeverity`.
83 enum LogSeverity {
99 using LogFunction = std::function<void(LogId, LogSeverity, const char*, const char*,
103 void KernelLogger(LogId, LogSeverity, const char*, const char*, unsigned int, const char*);
104 void StderrLogger(LogId, LogSeverity, const char*, const char*, unsigned int, const char*);
118 void operator()(LogId, LogSeverity, const char* tag, const char* file,
172 // unqualified name for a LogSeverity, and returns a LogSeverity value.
426 LogMessage(const char* file, unsigned int line, LogId id, LogSeverity severity, const char* tag,
436 static void LogLine(const char* file, unsigned int line, LogId id, LogSeverity severity,
443 LogMessage(const char* file, unsigned int line, LogId id, LogSeverity severity, int error);
444 static void LogLine(const char* file, unsigned int line, LogId id, LogSeverity severity,
451 LogSeverity GetMinimumLogSeverity();
454 LogSeverity SetMinimumLogSeverity(LogSeverity new_severity);
459 explicit ScopedLogSeverity(LogSeverity level);
463 LogSeverity old_;