Lines Matching refs:fmt
44 #define SC_LOGERR(fmt, args...) ((void)ALOG(LOG_ERROR, LOG_TAG, "%s: " fmt " [%s]", __func__, ##arg… argument
45 #define SC_LOGE(fmt, args...) ((void)ALOG(LOG_ERROR, LOG_TAG, "%s: " fmt, __func__, ##args)) argument
46 #define SC_LOGI(fmt, args...) ((void)ALOG(LOG_INFO, LOG_TAG, "%s: " fmt, __func__, ##args)) argument
47 #define SC_LOGI_IF(cond, fmt, args...) do { \ argument
49 SC_LOGI(fmt, ##args); \
51 #define SC_LOGE_IF(cond, fmt, args...) do { \ argument
53 SC_LOGE(fmt, ##args); \
55 #define SC_LOG_ASSERT(cont, fmt, args...) ((void)ALOG_ASSERT(cond, "%s: " fmt, __func__, ##args)) argument
59 #define SC_LOGD_IF(cond, fmt, args...) do { \ argument
61 SC_LOGD(fmt, ##args); \
65 #define SC_LOGD_IF(cond, fmt, args...) do { } while (0) argument