Lines Matching full:level
26 int OH_LOG_Print(LogType type, LogLevel level, unsigned int domain, const char *tag, const char *fm… in OH_LOG_Print() argument
31 ret = HiLogPrintArgs(type, level, domain, tag, fmt, ap); in OH_LOG_Print()
36 int OH_LOG_PrintMsg(LogType type, LogLevel level, unsigned int domain, const char *tag, const char … in OH_LOG_PrintMsg() argument
38 return OH_LOG_Print(type, level, domain, tag, "%{public}s", message); in OH_LOG_PrintMsg()
41 int OH_LOG_PrintMsgByLen(LogType type, LogLevel level, unsigned int domain, const char *tag, size_t… in OH_LOG_PrintMsgByLen() argument
57 return OH_LOG_Print(type, level, domain, newTag, "%{public}s", newMessage); in OH_LOG_PrintMsgByLen()
60 int OH_LOG_VPrint(LogType type, LogLevel level, unsigned int domain, const char *tag, const char *f… in OH_LOG_VPrint() argument
62 return HiLogPrintArgs(type, level, domain, tag, fmt, ap); in OH_LOG_VPrint()
65 bool OH_LOG_IsLoggable(unsigned int domain, const char *tag, LogLevel level) in OH_LOG_IsLoggable() argument
67 return HiLogIsLoggable(domain, tag, level); in OH_LOG_IsLoggable()
75 void OH_LOG_SetMinLogLevel(LogLevel level) in OH_LOG_SetMinLogLevel() argument
77 return HiLogSetAppMinLogLevel(level); in OH_LOG_SetMinLogLevel()