/hardware/st/secure_element2/secure_element/esehal/src/ |
D | log.h | 39 # define err(fmt, ...) say(ctx, LOG_ERR fmt, ## __VA_ARGS__) argument 40 # define warn(fmt, ...) say(ctx, LOG_WARN fmt, ## __VA_ARGS__) argument 41 # define notice(fmt, ...) say(ctx, LOG_NOTICE fmt, ## __VA_ARGS__) argument 42 # define info(fmt, ...) say(ctx, LOG_INFO fmt, ## __VA_ARGS__) argument 44 # define dbg(fmt, ...) say(ctx, LOG_DEBUG fmt, ## __VA_ARGS__) argument 46 # define dbg(fmt, ...) nosay(ctx, LOG_DEBUG fmt, ## __VA_ARGS__) argument 53 say(struct se_gto_ctx *ctx, const char *fmt, ...) { in say() 63 # define err(fmt, ...) nosay(ctx, fmt, ## __VA_ARGS__) argument 64 # define warn(fmt, ...) nosay(ctx, fmt, ## __VA_ARGS__) argument 65 # define notice(fmt, ...) nosay(ctx, fmt, ## __VA_ARGS__) argument [all …]
|
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-interface/inc/ |
D | mm_camera_dbg.h | 66 #define CLOGx(module, level, fmt, args...) \ argument 74 #define CLOGI(module, fmt, args...) \ argument 77 #define CLOGD(module, fmt, args...) \ argument 80 #define CLOGL(module, fmt, args...) \ argument 83 #define CLOGW(module, fmt, args...) \ argument 86 #define CLOGH(module, fmt, args...) \ argument 89 #define CLOGE(module, fmt, args...) \ argument 97 #define LOGD(fmt, args...) CLOGD(CAM_MODULE, fmt, ##args) argument 99 #define LOGL(fmt, args...) CLOGL(CAM_MODULE, fmt, ##args) argument 101 #define LOGW(fmt, args...) CLOGW(CAM_MODULE, fmt, ##args) argument [all …]
|
/hardware/google/gfxstream/guest/mesa/src/util/ |
D | log.h | 57 #define mesa_loge(fmt, ...) mesa_log(MESA_LOG_ERROR, (MESA_LOG_TAG), (fmt), ##__VA_ARGS__) argument 58 #define mesa_logw(fmt, ...) mesa_log(MESA_LOG_WARN, (MESA_LOG_TAG), (fmt), ##__VA_ARGS__) argument 59 #define mesa_logi(fmt, ...) mesa_log(MESA_LOG_INFO, (MESA_LOG_TAG), (fmt), ##__VA_ARGS__) argument 61 #define mesa_logd(fmt, ...) mesa_log(MESA_LOG_DEBUG, (MESA_LOG_TAG), (fmt), ##__VA_ARGS__) argument 63 #define mesa_logd(fmt, ...) __mesa_log_use_args((fmt), ##__VA_ARGS__) argument 66 #define mesa_loge_v(fmt, va) mesa_log_v(MESA_LOG_ERROR, (MESA_LOG_TAG), (fmt), (va)) argument 67 #define mesa_logw_v(fmt, va) mesa_log_v(MESA_LOG_WARN, (MESA_LOG_TAG), (fmt), (va)) argument 68 #define mesa_logi_v(fmt, va) mesa_log_v(MESA_LOG_INFO, (MESA_LOG_TAG), (fmt), (va)) argument 70 #define mesa_logd_v(fmt, va) mesa_log_v(MESA_LOG_DEBUG, (MESA_LOG_TAG), (fmt), (va)) argument 72 #define mesa_logd_v(fmt, va) __mesa_log_use_args((fmt), (va)) argument [all …]
|
/hardware/qcom/sm8150/data/ipacfg-mgr/ipacm/inc/ |
D | IPACM_Log.h | 70 #define IPACMDBG_DMESG(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 78 #define PERROR(fmt) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 82 #define IPACMERR(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 86 #define IPACMDBG_H(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 91 #define PERROR(fmt) perror(fmt) argument 92 #define IPACMERR(fmt, ...) printf("ERR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__… argument 93 #define IPACMDBG_H(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_AR… argument 95 #define IPACMDBG(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS… argument 96 #define IPACMLOG(fmt, ...) printf(fmt, ##__VA_ARGS__); argument
|
/hardware/qcom/data/ipacfg-mgr/msm8998/ipacm/inc/ |
D | IPACM_Log.h | 70 #define IPACMDBG_DMESG(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 78 #define PERROR(fmt) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 82 #define IPACMERR(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 86 #define IPACMDBG_H(fmt, ...) memset(buffer_send, 0, MAX_BUF_LEN);\ argument 91 #define PERROR(fmt) perror(fmt) argument 92 #define IPACMERR(fmt, ...) printf("ERR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__… argument 93 #define IPACMDBG_H(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_AR… argument 95 #define IPACMDBG(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS… argument 96 #define IPACMLOG(fmt, ...) printf(fmt, ##__VA_ARGS__); argument
|
/hardware/invensense/65xx/libsensors_iio/software/core/driver/include/ |
D | log.h | 124 #define MPL_LOGV(fmt, ...) \ argument 150 #define MPL_LOGV_IF(cond, fmt, ...) \ argument 164 #define MPL_LOGD(fmt, ...) MPL_LOG(LOG_DEBUG, MPL_LOG_TAG, fmt, ##__VA_ARGS__) argument 168 #define MPL_LOGD_IF(cond, fmt, ...) \ argument 179 #define MPL_LOGI(fmt, ...) pr_info(KERN_INFO MPL_LOG_TAG fmt, ##__VA_ARGS__) argument 186 #define MPL_LOGI_IF(cond, fmt, ...) \ argument 197 #define MPL_LOGW(fmt, ...) printk(KERN_WARNING MPL_LOG_TAG fmt, ##__VA_ARGS__) argument 204 #define MPL_LOGW_IF(cond, fmt, ...) \ argument 215 #define MPL_LOGE(fmt, ...) printk(KERN_ERR MPL_LOG_TAG fmt, ##__VA_ARGS__) argument 222 #define MPL_LOGE_IF(cond, fmt, ...) \ argument [all …]
|
/hardware/invensense/6515/libsensors_iio/software/core/driver/include/ |
D | log.h | 142 #define MPL_LOGV(fmt, ...) \ argument 181 #define MPL_LOGV_IF(cond, fmt, ...) \ argument 197 #define MPL_LOGD(fmt, ...) MPL_LOG(MPL_LOG_DEBUG, MPL_LOG_TAG, fmt, ##__VA_ARGS__) argument 204 #define MPL_LOGD_IF(cond, fmt, ...) \ argument 215 #define MPL_LOGI(fmt, ...) pr_info(KERN_INFO MPL_LOG_TAG fmt, ##__VA_ARGS__) argument 227 #define MPL_LOGI_IF(cond, fmt, ...) \ argument 238 #define MPL_LOGW(fmt, ...) printk(KERN_WARNING MPL_LOG_TAG fmt, ##__VA_ARGS__) argument 245 #define MPL_LOGW_IF(cond, fmt, ...) \ argument 256 #define MPL_LOGE(fmt, ...) printk(KERN_ERR MPL_LOG_TAG fmt, ##__VA_ARGS__) argument 270 #define MPL_LOGE_IF(cond, fmt, ...) \ argument [all …]
|
/hardware/libhardware/modules/camera/3_4/ |
D | common.h | 23 #define HAL_LOGE(fmt, args...) do { \ argument 27 #define HAL_LOGE_IF(cond, fmt, args...) do { \ argument 31 #define HAL_LOGW(fmt, args...) do { \ argument 35 #define HAL_LOGW_IF(cond, fmt, args...) do { \ argument 39 #define HAL_LOGI(fmt, args...) do { \ argument 43 #define HAL_LOGI_IF(cond, fmt, args...) do { \ argument 47 #define HAL_LOGD(fmt, args...) do { \ argument 51 #define HAL_LOGV(fmt, args...) do { \ argument
|
/hardware/google/aemu/base/include/aemu/base/logging/ |
D | CLog.h | 43 #define EMULOG(priority, fmt, ...) \ argument 49 #define dprint(fmt, ...) \ argument 55 #define dinfo(fmt, ...) \ argument 61 #define dwarning(fmt, ...) \ argument 67 #define derror(fmt, ...) \ argument 73 #define dfatal(fmt, ...) EMULOG(EMULATOR_LOG_FATAL, fmt, ##__VA_ARGS__) argument
|
/hardware/google/aemu/host-common/include/host-common/ |
D | logging.h | 39 #define GFXSTREAM_LOG(file, severity, fmt, ...) \ argument 44 #define GL_LOG(fmt, ...) GFXSTREAM_LOG(stderr, 'I', fmt, ##__VA_ARGS__) argument 51 #define DECODER_DEBUG_LOG(fmt, ...) GFXSTREAM_LOG(stderr, 'I', fmt, ##__VA_ARGS__) argument 58 #define DISPATCH_DEBUG_LOG(fmt, ...) GFXSTREAM_LOG(stderr, 'I', fmt, ##__VA_ARGS__) argument 63 #define ERR(fmt, ...) \ argument 68 #define WARN(fmt, ...) \ argument 73 #define INFO(fmt, ...) \ argument
|
/hardware/qcom/sm8150/data/ipacfg-mgr/ipanat/inc/ |
D | ipa_nat_logi.h | 53 #define PERROR(fmt) printf("%s:%d %s()", __FILE__, __LINE__, __FUNCTION__);\ argument 56 #define IPAERR(fmt, ...) printf("ERR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_… argument 59 #define IPADBG(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__… argument 61 #define IPADUMP(fmt, ...) printf(fmt, ##__VA_ARGS__); argument
|
/hardware/qcom/data/ipacfg-mgr/msm8998/ipanat/inc/ |
D | ipa_nat_logi.h | 53 #define PERROR(fmt) printf("%s:%d %s()", __FILE__, __LINE__, __FUNCTION__);\ argument 56 #define IPAERR(fmt, ...) printf("ERR: %s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_… argument 59 #define IPADBG(fmt, ...) printf("%s:%d %s() " fmt, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__… argument 61 #define IPADUMP(fmt, ...) printf(fmt, ##__VA_ARGS__); argument
|
/hardware/qcom/sm8150/media/hypv-intercept/ |
D | hypv_intercept.h | 56 #define HYP_VIDEO_MSG_INFO(fmt, args...) ({if(debug_level & HYP_PRIO_INFO) \ argument 59 #define HYP_VIDEO_MSG_LOW(fmt, args...) ({if(debug_level & HYP_PRIO_LOW) \ argument 62 #define HYP_VIDEO_MSG_HIGH(fmt, args...) ({if(debug_level & HYP_PRIO_HIGH) \ argument 65 #define HYP_VIDEO_MSG_ERROR(fmt, args...) ({if(debug_level & HYP_PRIO_ERROR) \ argument
|
/hardware/google/gfxstream/guest/android-emu/android/utils/ |
D | debug.h | 109 #define EMULOG(priority, fmt, ...) \ argument 134 #define dprint(fmt, ...) \ argument 139 #define dinfo(fmt, ...) \ argument 143 #define dwarning(fmt, ...) \ argument 147 #define derror(fmt, ...) \ argument 151 #define dfatal(fmt, ...) EMULOG(EMULATOR_LOG_FATAL, fmt, ##__VA_ARGS__) argument
|
/hardware/google/graphics/common/libscaler/ |
D | libscaler-common.h | 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 51 #define SC_LOGE_IF(cond, fmt, args...) do { \ argument 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 65 #define SC_LOGD_IF(cond, fmt, args...) do { } while (0) argument
|
/hardware/qcom/media/msm8974/mm-video-v4l2/vidc/common/inc/ |
D | vidc_debug.h | 46 #define DEBUG_PRINT_ERROR(fmt, args...) \ argument 50 #define DEBUG_PRINT_INFO(fmt, args...) \ argument 54 #define DEBUG_PRINT_LOW(fmt, args...) \ argument 58 #define DEBUG_PRINT_HIGH(fmt, args...) \ argument
|
/hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/inc/ |
D | vidc_debug.h | 46 #define DEBUG_PRINT_ERROR(fmt, args...) ({ \ argument 51 #define DEBUG_PRINT_INFO(fmt, args...) ({ \ argument 56 #define DEBUG_PRINT_LOW(fmt, args...) ({ \ argument 61 #define DEBUG_PRINT_HIGH(fmt, args...) ({ \ argument
|
/hardware/google/gfxstream/guest/mesa/src/util/perf/ |
D | gpuvis_trace_utils.h | 235 static inline void gpuvis_trace_blockf_vbegin( struct GpuvisTraceBlockf *block, const char *fmt, va… in gpuvis_trace_blockf_vbegin() 241 static inline void gpuvis_trace_blockf_begin( struct GpuvisTraceBlockf *block, const char *fmt, ...… in gpuvis_trace_blockf_begin() 262 static inline int gpuvis_trace_printf( const char *fmt, ... ) { return 0; } in gpuvis_trace_printf() 263 static inline int gpuvis_trace_vprintf( const char *fmt, va_list ap ) { return 0; } in gpuvis_trace_vprintf() 265 static inline int gpuvis_trace_duration_printf( float duration, const char *fmt, ... ) { return 0; } in gpuvis_trace_duration_printf() 266 static inline int gpuvis_trace_duration_vprintf( float duration, const char *fmt, va_list ap ) { re… in gpuvis_trace_duration_vprintf() 268 static inline int gpuvis_trace_begin_ctx_printf( unsigned int ctx, const char *fmt, ... ) { return … in gpuvis_trace_begin_ctx_printf() 269 static inline int gpuvis_trace_begin_ctx_vprintf( unsigned int ctx, const char *fmt, va_list ap ) {… in gpuvis_trace_begin_ctx_vprintf() 271 static inline int gpuvis_trace_end_ctx_printf( unsigned int ctx, const char *fmt, ... ) { return 0;… in gpuvis_trace_end_ctx_printf() 272 static inline int gpuvis_trace_end_ctx_vprintf( unsigned int ctx, const char *fmt, va_list ap ) { r… in gpuvis_trace_end_ctx_vprintf() [all …]
|
/hardware/google/aemu/host-common/ |
D | H264NaluParser.cpp | 31 #define H264_PRINT(color,fmt,...) fprintf(stderr, color "H264NaluParser: %s:%d " fmt "\n" RESET, __… argument 33 #define H264_PRINT(fmt,...) argument 36 #define H264_INFO(fmt,...) H264_PRINT(RESET, fmt, ##__VA_ARGS__); argument 37 #define H264_WARN(fmt,...) H264_PRINT(YEL, fmt, ##__VA_ARGS__); argument 38 #define H264_ERROR(fmt,...) H264_PRINT(RED, fmt, ##__VA_ARGS__); argument
|
D | MediaVideoHelper.cpp | 20 #define MEDIA_DPRINT(fmt, ...) \ argument 24 #define MEDIA_DPRINT(fmt, ...) argument
|
D | VpxPingInfoParser.cpp | 28 #define VPX_PRINT(color, fmt, ...) \ argument 32 #define VPX_PRINT(fmt, ...) argument 35 #define VPX_INFO(fmt, ...) VPX_PRINT(RESET, fmt, ##__VA_ARGS__); argument 36 #define VPX_WARN(fmt, ...) VPX_PRINT(YEL, fmt, ##__VA_ARGS__); argument 37 #define VPX_ERROR(fmt, ...) VPX_PRINT(RED, fmt, ##__VA_ARGS__); argument
|
D | H264PingInfoParser.cpp | 28 #define H264_PRINT(color, fmt, ...) \ argument 32 #define H264_PRINT(fmt, ...) argument 35 #define H264_INFO(fmt, ...) H264_PRINT(RESET, fmt, ##__VA_ARGS__); argument 36 #define H264_WARN(fmt, ...) H264_PRINT(YEL, fmt, ##__VA_ARGS__); argument 37 #define H264_ERROR(fmt, ...) H264_PRINT(RED, fmt, ##__VA_ARGS__); argument
|
/hardware/google/gfxstream/host/tests/ |
D | ShaderUtils.cpp | 35 #define D(fmt,...) fprintf(stderr, "%s: " fmt "\n", __func__, ##__VA_ARGS__); argument 37 #define D(fmt,...) argument 40 #define E(fmt,...) fprintf(stderr, "%s: " fmt "\n", __func__, ##__VA_ARGS__); argument
|
/hardware/qcom/sm7250/display/composer/ |
D | hwc_debugger.cpp | 182 void HWCDebugHandler::Error(const char *fmt, ...) { in Error() 188 void HWCDebugHandler::Warning(const char *fmt, ...) { in Warning() 194 void HWCDebugHandler::Info(const char *fmt, ...) { in Info() 200 void HWCDebugHandler::Debug(const char *fmt, ...) { in Debug() 206 void HWCDebugHandler::Verbose(const char *fmt, ...) { in Verbose()
|
/hardware/qcom/sm8150/data/ipacfg-mgr/ipanat/test/ |
D | ipa_nat_test.h | 76 #define IPADBG(fmt, args...) printf(" %s:%d " fmt, __FUNCTION__, __LINE__, ## args) argument 77 #define IPAERR(fmt, args...) printf(" %s:%d " fmt, __FUNCTION__, __LINE__, ## args) argument
|