Lines Matching refs:fmt
31 #define DMSLITE_LOG(LEVEL, fmt, ...)
33 #define DMSLITE_LOG(LEVEL, fmt, ...) \
34 HILOG_##LEVEL(HILOG_MODULE_DMS, DMSLITE_LABEL "[%s:%d]" fmt NEW_LINE, __func__, __LINE__, ##__VA_ARGS__)
38 #define HILOGD(fmt, ...) DMSLITE_LOG(DEBUG, fmt, ##__VA_ARGS__)
40 #define HILOGD(fmt, ...)
44 #define HILOGI(fmt, ...) DMSLITE_LOG(INFO, fmt, ##__VA_ARGS__)
46 #define HILOGI(fmt, ...)
50 #define HILOGW(fmt, ...) DMSLITE_LOG(WARN, fmt, ##__VA_ARGS__)
52 #define HILOGW(fmt, ...)
56 #define HILOGE(fmt, ...) DMSLITE_LOG(ERROR, fmt, ##__VA_ARGS__)
58 #define HILOGE(fmt, ...)
62 #define HILOGF(fmt, ...) DMSLITE_LOG(FATAL, fmt, ##__VA_ARGS__)
64 #define HILOGF(fmt, ...)