Home
last modified time | relevance | path

Searched refs:fmt (Results 1 - 25 of 323) sorted by relevance

12345678910>>...13

/device/soc/rockchip/rk3588/hardware/mpp/include/
H A Dmpp_log.h39 #define mpp_logf(fmt, ...) _mpp_log_l(MPP_LOG_FATAL, MODULE_TAG, fmt, NULL, ## __VA_ARGS__)
40 #define mpp_loge(fmt, ...) _mpp_log_l(MPP_LOG_ERROR, MODULE_TAG, fmt, NULL, ## __VA_ARGS__)
41 #define mpp_logw(fmt, ...) _mpp_log_l(MPP_LOG_WARN, MODULE_TAG, fmt, NULL, ## __VA_ARGS__)
42 #define mpp_logi(fmt, ...) _mpp_log_l(MPP_LOG_INFO, MODULE_TAG, fmt, NULL, ## __VA_ARGS__)
43 #define mpp_logd(fmt, ...) _mpp_log_l(MPP_LOG_DEBUG, MODULE_TAG, fmt, NUL
[all...]
H A Dmpp_debug.h36 #define _mpp_dbg(debug, flag, fmt, ...) mpp_log_c((debug) & (flag), fmt, ## __VA_ARGS__)
37 #define _mpp_dbg_f(debug, flag, fmt, ...) mpp_log_cf((debug) & (flag), fmt, ## __VA_ARGS__)
39 #define mpp_dbg(flag, fmt, ...) _mpp_dbg(mpp_debug, flag, fmt, ## __VA_ARGS__)
40 #define mpp_dbg_f(flag, fmt, ...) _mpp_dbg_f(mpp_debug, flag, fmt, ## __VA_ARGS__)
42 #define mpp_dbg_pts(fmt, ...) mpp_dbg(MPP_DBG_PTS, fmt, ## __VA_ARGS_
[all...]
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oam/
H A Doam_ext_if.h47 #define oam_error_log(vid, eid, fmt, args...) oam_logn(vid, eid, OAM_LOG_LEVEL_ERROR, fmt, ##args)
48 #define oam_error_log0(vid, eid, fmt) oam_log(vid, eid, OAM_LOG_LEVEL_ERROR, fmt, 0, 0, 0, 0, 0)
49 #define oam_error_log1(vid, eid, fmt, p1) oam_log(vid, eid, OAM_LOG_LEVEL_ERROR, fmt, 1, p1,0, 0, 0)
50 #define oam_error_log2(vid, eid, fmt, p1, p2) oam_log(vid, eid, OAM_LOG_LEVEL_ERROR, fmt, 2, p1, p2, 0, 0)
51 #define oam_error_log3(vid, eid, fmt, p1, p2, p3) oam_log(vid, eid, OAM_LOG_LEVEL_ERROR, fmt,
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/hdmi/src/mkp/product/hi3516cv500/
H A Dhdmi_product_define.h81 #define hi_err_hdmi(fmt...) \
84 HI_ERR_TRACE(HI_ID_HDMI, ##fmt); \
87 #define hi_warn_hdmi(fmt...) \
90 HI_WARN_TRACE(HI_ID_HDMI, ##fmt); \
93 #define hi_info_hdmi(fmt...) \
96 HI_INFO_TRACE(HI_ID_HDMI, ##fmt); \
99 #define hi_fatal_hdmi(fmt...) \
101 HI_DEBUG_TRACE(HI_ID_HDMI, fmt); \
114 #define hdmi_printk(fmt, args...) osal_printk(fmt, ##arg
[all...]
/device/soc/hisilicon/hi3751v350/sdk_linux/source/common/include/
H A Dhi_log.h30 #define HI_PANIC(fmt...) \
34 #define HI_PRINT(fmt...) \
141 #define HI_TRACE(level, module_id, fmt...) \
143 hi_log_out(level, module_id, (hi_u8 *)__FUNCTION__, __LINE__, fmt); \
146 #define HI_TRACE(level, module_id, fmt...) \
149 printk(fmt); \
154 #define HI_TRACE(level, module_id, fmt...) \
156 hi_log_out(level, module_id, (hi_u8 *)__FUNCTION__, __LINE__, fmt); \
181 #define HI_LOG_FATAL(fmt...) HI_TRACE(HI_TRACE_LEVEL_FATAL, LOG_D_MODULE_ID, fmt)
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/platform/os/Huawei_LiteOS/targets/hi3861v100/include/
H A Dlos_printf.h62 extern int printf(const char *fmt, ...);
70 * Print argument(s) according to fmt.
77 * @param fmt [IN] Type char* controls the ouput as in C printf.
87 #define PRINT_DEBUG(fmt, args...)
89 #define PRINT_DEBUG(fmt, args...) do { (los_printf("[DEBUG] "), los_printf(fmt, ##args)); } while (0)
93 #define PRINT_INFO(fmt, args...)
95 #define PRINT_INFO(fmt, args...) do { (los_printf("[INFO] "), los_printf(fmt, ##args)); } while (0)
99 #define PRINT_WARN(fmt, arg
[all...]
/device/soc/rockchip/rk3399/hardware/mpp/include/
H A Dmpp_log.h31 #define mpp_log(fmt, ...) _mpp_log(MODULE_TAG, fmt, NULL, ## __VA_ARGS__)
32 #define mpp_err(fmt, ...) _mpp_err(MODULE_TAG, fmt, NULL, ## __VA_ARGS__)
34 #define _mpp_dbg( flag, fmt, ...) \
37 mpp_log(fmt, ## __VA_ARGS__); \
40 #define mpp_dbg(flag, fmt, ...) _mpp_dbg(flag, fmt, ## __VA_ARGS__)
45 #define mpp_log_f(fmt, ...) _mpp_log(MODULE_TAG, fmt, __FUNCTION_
[all...]
/device/soc/rockchip/rk3568/hardware/mpp/include/
H A Dmpp_log.h31 #define mpp_log(fmt, ...) _mpp_log(MODULE_TAG, fmt, NULL, ## __VA_ARGS__)
32 #define mpp_err(fmt, ...) _mpp_err(MODULE_TAG, fmt, NULL, ## __VA_ARGS__)
34 #define _mpp_dbg(debug, flag, fmt, ...) \
37 mpp_log(fmt, ## __VA_ARGS__); \
40 #define mpp_dbg(flag, fmt, ...) _mpp_dbg(mpp_debug, flag, fmt, ## __VA_ARGS__)
45 #define mpp_log_f(fmt, ...) _mpp_log(MODULE_TAG, fmt, __FUNCTION_
[all...]
/device/soc/rockchip/common/hardware/mpp/include/
H A Dmpp_log.h31 #define mpp_log(fmt, ...) _mpp_log(MODULE_TAG, fmt, NULL, ##__VA_ARGS__)
32 #define mpp_err(fmt, ...) _mpp_err(MODULE_TAG, fmt, NULL, ##__VA_ARGS__)
34 #define _mpp_dbg(debug, flag, fmt, ...) \
37 mpp_log(fmt, ##__VA_ARGS__); \
40 #define mpp_dbg(flag, fmt, ...) _mpp_dbg(mpp_debug, flag, fmt, ##__VA_ARGS__)
45 #define mpp_log_f(fmt, ...) _mpp_log(MODULE_TAG, fmt, __FUNCTION_
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/cbb/include/
H A Dhi_debug.h78 #define HI_TRACE(level, enModId, fmt...) \
81 (hi_void)fprintf(stderr, ##fmt); \
86 #define HI_TRACE(level, enModId, fmt...)
94 int HI_LOG(HI_S32 level, MOD_ID_E enModId, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
115 #define HI_TRACE(level, enModId, fmt...)
121 #define HI_EMERG_TRACE(mod, fmt...) HI_TRACE(HI_DBG_EMERG, mod, fmt)
123 #define HI_EMERG_TRACE(mod, fmt...)
127 #define HI_ALERT_TRACE(mod, fmt...) HI_TRACE(HI_DBG_ALERT, mod, fmt)
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_liteos/include/
H A Dhi_debug.h75 #define HI_TRACE(level, enModId, fmt...) \
78 (hi_void)fprintf(stderr, ##fmt); \
83 #define HI_TRACE(level, enModId, fmt...)
91 int HI_LOG(HI_S32 level, MOD_ID_E enModId, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
112 #define HI_TRACE(level, enModId, fmt...)
118 #define HI_EMERG_TRACE(mod, fmt...) HI_TRACE(HI_DBG_EMERG, mod, fmt)
120 #define HI_EMERG_TRACE(mod, fmt...)
124 #define HI_ALERT_TRACE(mod, fmt...) HI_TRACE(HI_DBG_ALERT, mod, fmt)
[all...]
H A Dhi_isp_debug.h21 #define isp_emerg_trace(fmt, ...) \
22 HI_EMERG_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);
24 #define isp_alert_trace(fmt, ...) \
25 HI_ALERT_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);
27 #define isp_crit_trace(fmt, ...) \
28 HI_CRIT_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);
30 #define isp_err_trace(fmt, ...) \
31 HI_ERR_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);
33 #define isp_warn_trace(fmt, ...) \
34 HI_WARN_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION_
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/include/
H A Dhi_debug.h75 #define HI_TRACE(level, enModId, fmt...) \
78 (hi_void)fprintf(stderr, ##fmt); \
83 #define HI_TRACE(level, enModId, fmt...)
91 int HI_LOG(HI_S32 level, MOD_ID_E enModId, const char *fmt, ...) __attribute__((format(printf, 3, 4)));
112 #define HI_TRACE(level, enModId, fmt...)
118 #define HI_EMERG_TRACE(mod, fmt...) HI_TRACE(HI_DBG_EMERG, mod, fmt)
120 #define HI_EMERG_TRACE(mod, fmt...)
124 #define HI_ALERT_TRACE(mod, fmt...) HI_TRACE(HI_DBG_ALERT, mod, fmt)
[all...]
H A Dhi_isp_debug.h21 #define isp_emerg_trace(fmt, ...) \
22 HI_EMERG_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);
24 #define isp_alert_trace(fmt, ...) \
25 HI_ALERT_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);
27 #define isp_crit_trace(fmt, ...) \
28 HI_CRIT_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);
30 #define isp_err_trace(fmt, ...) \
31 HI_ERR_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);
33 #define isp_warn_trace(fmt, ...) \
34 HI_WARN_TRACE(HI_ID_ISP, "[Func]:%s [Line]:%d [Info]:" fmt, __FUNCTION_
[all...]
/device/soc/rockchip/rk3568/hardware/omx_il/component/common/
H A Domx_video_global.h46 #define VDEC_DBG_LOG(fmt, ...) \
49 { omx_info(fmt, ## __VA_ARGS__); } \
52 #define VDEC_DBG_LOG_F(fmt, ...) \
55 { omx_info_f(fmt, ## __VA_ARGS__); } \
58 #define VDEC_DBG(level, fmt, ...) \
61 { omx_info(fmt, ## __VA_ARGS__); } \
64 #define VDEC_DBG_F(level, fmt, ...) \
67 { omx_info_f(fmt, ## __VA_ARGS__); } \
70 #define VENC_DBG_LOG(fmt, ...) \
73 { omx_info(fmt, ## __VA_ARGS_
[all...]
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/lwip_sack/include/lwip/
H A Ddebug.h196 #define LWIP_DEBUGF_LOG0(dbg, fmt) diag_layer_msg_i0(0, fmt);
197 #define LWIP_DEBUGF_LOG1(dbg, fmt, p1) diag_layer_msg_i1(0, fmt, (hi_u32)(p1));
198 #define LWIP_DEBUGF_LOG2(dbg, fmt, p1, p2) diag_layer_msg_i2(0, fmt, (hi_u32)(p1), (hi_u32)(p2));
199 #define LWIP_DEBUGF_LOG3(dbg, fmt, p1, p2, p3) \
200 diag_layer_msg_i3(0, fmt, (hi_u32)(p1), (hi_u32)(p2), (hi_u32)(p3));
201 #define LWIP_DEBUGF_LOG4(dbg, fmt, p1, p2, p3, p4) \
202 diag_layer_msg_i4(0, fmt, (hi_u3
[all...]
/device/soc/hisilicon/hi3751v350/sdk_linux/source/msp/drv/fm11nt081d/
H A Dfm11nt081d.h39 #define NFC_DBG(fmt, arg...) printk(KERN_INFO "nfc: " fmt "\n", ##arg)
40 #define NFC_INFO(fmt, arg...) printk(KERN_INFO "nfc: " fmt "\n", ##arg)
41 #define NFC_WARN(fmt, arg...) printk(KERN_WARNING "nfc: " fmt "\n", ##arg)
42 #define NFC_ERR(fmt, arg...) printk(KERN_ERR "nfc: " fmt "\n", ##arg)
44 #define NFC_DBG(fmt, arg...)
45 #define NFC_INFO(fmt, ar
[all...]
/device/soc/rockchip/rk2206/hardware/include/lz_hardware/
H A Dlog.h37 #define LZ_PRINTF(level, fmt, ...) do { \
38 if (LZ_HARDWARE_TRACE_LEVEL >= level) printf(fmt, ##__VA_ARGS__); \
41 #define LZ_HARDWARE_LOGV(tag, fmt, arg...) LZ_PRINTF(LZ_HARDWARE_LOGV_LEVEL, "[" tag ":V]" fmt "\n", ##arg)
42 #define LZ_HARDWARE_LOGD(tag, fmt, arg...) LZ_PRINTF(LZ_HARDWARE_LOGD_LEVEL, BLUE "[" tag ":D]" fmt "\n" NONE, ##arg)
43 #define LZ_HARDWARE_LOGI(tag, fmt, arg...) LZ_PRINTF(LZ_HARDWARE_LOGI_LEVEL, BROWN "[" tag ":I]" fmt "\n" NONE, ##arg)
44 #define LZ_HARDWARE_LOGW(tag, fmt, arg...) LZ_PRINTF(LZ_HARDWARE_LOGW_LEVEL, GREEN "[" tag ":W]" fmt "\
[all...]
/device/soc/rockchip/common/vendor/drivers/video/rockchip/mpp/
H A Dmpp_debug.h61 #define mpp_debug_func(type, fmt, args...) \
64 pr_info("%s:%d: " fmt, __func__, __LINE__, ##args); \
67 #define mpp_debug(type, fmt, args...) \
70 pr_info(fmt, ##args); \
88 #define mpp_err(fmt, args...) pr_err("%s:%d: " fmt, __func__, __LINE__, ##args)
90 #define mpp_dbg_link_flow(fmt, args...) \
93 pr_info("%s:%d: " fmt, __func__, __LINE__, ##args); \
97 #define mpp_dbg_session(fmt, args...) \
100 pr_info(fmt, ##arg
[all...]
/device/soc/rockchip/rk3588/kernel/drivers/video/rockchip/mpp/
H A Dmpp_debug.h64 #define mpp_debug_func(type, fmt, args...) \
67 pr_info("%s:%d: " fmt, \
71 #define mpp_debug(type, fmt, args...) \
74 pr_info(fmt, ##args); \
94 #define mpp_err(fmt, args...) \
95 pr_err("%s:%d: " fmt, __func__, __LINE__, ##args)
97 #define mpp_dbg_link_flow(fmt, args...) \
100 pr_info("%s:%d: " fmt, \
105 #define mpp_dbg_session(fmt, args...) \
108 pr_info(fmt, ##arg
[all...]
/device/board/hihope/rk3568/audio_drivers/include/
H A Daudio_device_log.h21 #define AUDIO_DEVICE_LOG_ERR(fmt, arg...) do { \
22 HDF_LOGE("[%s][line:%d]: " fmt, __func__, __LINE__, ##arg); \
25 #define AUDIO_DEVICE_LOG_WARNING(fmt, arg...) do { \
26 HDF_LOGW("[%s][line:%d]: " fmt, __func__, __LINE__, ##arg); \
30 #define AUDIO_DEVICE_LOG_INFO(fmt, arg...) do { \
31 HDF_LOGI("[%s][line:%d]: " fmt, __func__, __LINE__, ##arg); \
34 #define AUDIO_DEVICE_LOG_DEBUG(fmt, arg...) do { \
35 HDF_LOGD("[%s][line:%d]: " fmt, __func__, __LINE__, ##arg); \
38 #define AUDIO_DEVICE_LOG_INFO(fmt, arg...) do { \
41 #define AUDIO_DEVICE_LOG_DEBUG(fmt, ar
[all...]
/device/board/hihope/dayu210/audio_drivers/include/
H A Daudio_device_log.h21 #define AUDIO_DEVICE_LOG_ERR(fmt, arg...) do { \
22 HDF_LOGE("[%s][line:%d]: " fmt, __func__, __LINE__, ##arg); \
25 #define AUDIO_DEVICE_LOG_WARNING(fmt, arg...) do { \
26 HDF_LOGW("[%s][line:%d]: " fmt, __func__, __LINE__, ##arg); \
30 #define AUDIO_DEVICE_LOG_INFO(fmt, arg...) do { \
31 HDF_LOGI("[%s][line:%d]: " fmt, __func__, __LINE__, ##arg); \
34 #define AUDIO_DEVICE_LOG_DEBUG(fmt, arg...) do { \
35 HDF_LOGD("[%s][line:%d]: " fmt, __func__, __LINE__, ##arg); \
38 #define AUDIO_DEVICE_LOG_INFO(fmt, arg...) do { \
41 #define AUDIO_DEVICE_LOG_DEBUG(fmt, ar
[all...]
/device/soc/rockchip/rk2206/sdk_liteos/platform/system/
H A Dsystem.c208 * @fmt: format of buffer
221 const char *fmt = __format; in pre_vsscanf() local
223 while (*fmt && *str) { in pre_vsscanf()
228 if (isspace_re(*fmt)) { in pre_vsscanf()
229 ++fmt; in pre_vsscanf()
230 fmt = skip_spaces(fmt); in pre_vsscanf()
235 if (*fmt != '%' && *fmt) { in pre_vsscanf()
236 if (*fmt in pre_vsscanf()
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/tde/driver/src/include/
H A Dtde_define.h82 #define tde_trace(level, fmt...) \
85 HI_TRACE(level, HI_ID_TDE, ##fmt); \
88 #define tde_fatal(fmt...) tde_trace(HI_DBG_EMERG, fmt)
89 #define tde_error(fmt...) tde_trace(HI_DBG_ERR, fmt)
90 #define tde_warning(fmt...) tde_trace(HI_DBG_WARN, fmt)
91 #define tde_info(fmt...) tde_trace(HI_DBG_INFO, fmt)
[all...]
/device/soc/rockchip/common/vendor/drivers/gpu/arm/midgard/platform/rk/
H A Dcustom_log.h52 #define V(fmt, args...) \
53 pr_debug("V : [File] : %s; [Line] : %d; [Func] : %s(); " fmt "\n", __FILE__, __LINE__, __func__, ##args)
60 #define D(fmt, args...) \
61 pr_info("D : [File] : %s; [Line] : %d; [Func] : %s(); " fmt "\n", __FILE__, __LINE__, __func__, ##args)
66 #define I(fmt, args...) \
67 pr_info("I : [File] : %s; [Line] : %d; [Func] : %s(); " fmt "\n", __FILE__, __LINE__, __func__, ##args)
69 #define W(fmt, args...) \
70 pr_warn("W : [File] : %s; [Line] : %d; [Func] : %s(); " fmt "\n", __FILE__, __LINE__, __func__, ##args)
72 #define E(fmt, args...) \
73 pr_err("E : [File] : %s; [Line] : %d; [Func] : %s(); " fmt "\
[all...]

Completed in 8 milliseconds

12345678910>>...13