Home
last modified time | relevance | path

Searched refs:LogLevel (Results 1 – 9 of 9) sorted by relevance

/device/google/contexthub/util/nanotool/
Dlog.cpp26 Log::LogLevel Log::level_;
30 void Log::Initialize(Logger *logger, LogLevel level) { in Initialize()
39 void Log::SetLevel(LogLevel level) { in SetLevel()
52 LOG_EX_VARARGS(LogLevel::Error, format); in Error()
56 LOG_EX_VARARGS(LogLevel::Warn, format); in Warn()
60 LOG_EX_VARARGS(LogLevel::Info, format); in Info()
64 LOG_EX_VARARGS(LogLevel::Debug, format); in Debug()
72 if (Log::level_ < LogLevel::Debug) { in DebugBuf()
107 char Log::LevelAbbrev(LogLevel level) { in LevelAbbrev()
109 case LogLevel::Error: in LevelAbbrev()
[all …]
Dlog.h51 enum class LogLevel { enum
61 static void Initialize(Logger *logger, LogLevel level);
79 static void SetLevel(LogLevel level);
82 static char LevelAbbrev(LogLevel level);
83 static void LogEx(LogLevel level, const char *format, va_list arg_list);
86 static LogLevel level_;
Dnanotool.cpp342 Log::SetLevel(Log::LogLevel::Debug); in ParseArgs()
344 Log::SetLevel(Log::LogLevel::Info); in ParseArgs()
414 Log::Initialize(new PrintfLogger(), Log::LogLevel::Warn); in main()
/device/google/contexthub/firmware/os/inc/
DsyscallDo.h80 static inline void eOsLogvInternal(enum LogLevel level, const char *str, uintptr_t args_list) in eOsLogvInternal()
85 static inline void eOsLogv(enum LogLevel level, const char *str, va_list vl) in eOsLogv()
90 static inline void eOsLog(enum LogLevel level, const char *str, ...) in eOsLog()
Dseos.h301 enum LogLevel { enum
310 void osLog(enum LogLevel level, const char *str, ...) PRINTF_ATTRIBUTE(2, 3);
/device/google/contexthub/firmware/os/cpu/cortexm4/
Dcpu.c148 enum LogLevel level = LOG_INFO; in cpuInitLate()
/device/google/contexthub/firmware/os/core/
DosApi.c89 enum LogLevel level = va_arg(args, int /* enums promoted to ints in va_args in C */); in osExpApiLogLogv()
DhostIntf.c173 enum LogLevel level;
222 static void hostIntfDeferErrLog(enum LogLevel level, enum hostIntfIntErrReason reason, const char *… in hostIntfDeferErrLog()
Dseos.c1496 void osLog(enum LogLevel level, const char *str, ...) in osLog()