Home | History | Annotate | Download | only in inc

Lines Matching refs:args

66 #define CLOGx(module, level, fmt, args...)                         \
69 mm_camera_debug_log(module, level, __func__, __LINE__, fmt, ##args); \
74 #define CLOGI(module, fmt, args...) \
75 CLOGx(module, CAM_GLBL_DBG_INFO, fmt, ##args)
77 #define CLOGD(module, fmt, args...) \
78 CLOGx(module, CAM_GLBL_DBG_DEBUG, fmt, ##args)
80 #define CLOGL(module, fmt, args...) \
81 CLOGx(module, CAM_GLBL_DBG_LOW, fmt, ##args)
83 #define CLOGW(module, fmt, args...) \
84 CLOGx(module, CAM_GLBL_DBG_WARN, fmt, ##args)
86 #define CLOGH(module, fmt, args...) \
87 CLOGx(module, CAM_GLBL_DBG_HIGH, fmt, ##args)
89 #define CLOGE(module, fmt, args...) \
90 CLOGx(module, CAM_GLBL_DBG_ERR, fmt, ##args)
97 #define LOGD(fmt, args...) CLOGD(CAM_MODULE, fmt, ##args)
99 #define LOGL(fmt, args...) CLOGL(CAM_MODULE, fmt, ##args)
101 #define LOGW(fmt, args...) CLOGW(CAM_MODULE, fmt, ##args)
103 #define LOGH(fmt, args...) CLOGH(CAM_MODULE, fmt, ##args)
105 #define LOGE(fmt, args...) CLOGE(CAM_MODULE, fmt, ##args)
107 #define LOGI(fmt, args...) CLOGI(CAM_MODULE, fmt, ##args)
120 #define LOGD(fmt, args...) ALOGD(fmt, ##args)
122 #define LOGL(fmt, args...) ALOGD(fmt, ##args)
124 #define LOGW(fmt, args...) ALOGW(fmt, ##args)
126 #define LOGH(fmt, args...) ALOGD(fmt, ##args)
128 #define LOGE(fmt, args...) ALOGE(fmt, ##args)
130 #define LOGI(fmt, args...) ALOGV(fmt, ##args)