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

1234

/hardware/ti/omap4xxx/domx/mm_osal/inc/
H A Dtimm_osal_trace.h112 const char *fmt, ...);
117 #define __TIMM_OSAL_Trace(level, tracegrp, fmt, ...) \
122 __TIMM_OSAL_TraceFunction(&loc, fmt"\n", ##__VA_ARGS__); \
128 #define TIMM_OSAL_Error(fmt,...) TIMM_OSAL_ErrorExt(TIMM_OSAL_TRACEGRP_SYSTEM, fmt, ##__VA_ARGS__)
133 #define TIMM_OSAL_Warning(fmt,...) TIMM_OSAL_WarningExt(TIMM_OSAL_TRACEGRP_SYSTEM, fmt, ##__VA_ARGS__)
138 #define TIMM_OSAL_Info(fmt,...) TIMM_OSAL_InfoExt(TIMM_OSAL_TRACEGRP_SYSTEM, fmt, ##__VA_ARGS__)
143 #define TIMM_OSAL_Debug(fmt,
[all...]
/hardware/qcom/camera/QCamera2/stack/mm-jpeg-interface/inc/
H A Dmm_jpeg_dbg.h45 #define CDBG(fmt, args...) do{}while(0)
53 #define CDBG(fmt, args...) ALOGE(fmt, ##args)
56 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args)
57 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
62 #define CDBG_HIGH(fmt, args...) ALOGE(fmt, ##args)
63 #define CDBG_ERROR(fmt, arg
[all...]
/hardware/qcom/camera/QCamera2/stack/mm-camera-interface/inc/
H A Dmm_camera_dbg.h47 #define CDBG(fmt, args...) do{}while(0)
48 #define CDBG_ERROR(fmt, args...) ALOGE(fmt, ##args)
56 #define CDBG(fmt, args...) ALOGE(fmt, ##args)
59 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args)
60 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
65 #define CDBG_HIGH(fmt, arg
[all...]
/hardware/qcom/camera/QCamera2/stack/mm-camera-test/inc/
H A Dmm_qcamera_dbg.h47 #define CDBG(fmt, args...) do{}while(0)
48 #define CDBG_ERROR(fmt, args...) ALOGE(fmt, ##args)
56 #define CDBG(fmt, args...) ALOGE(fmt, ##args)
59 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args)
60 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
65 #define CDBG_HIGH(fmt, arg
[all...]
/hardware/invensense/60xx/libsensors_iio/software/core/driver/include/
H A Dlog.h120 #define MPL_LOGV(fmt, ...) \
124 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\
128 #define MPL_LOGV(fmt, ...) \
131 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\
136 #define MPL_LOGV(fmt, ...) MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__)
146 #define MPL_LOGV_IF(cond, fmt, ...) \
147 do { if (0) MPL_LOG(fmt, ##__VA_ARGS__); } while (0)
149 #define MPL_LOGV_IF(cond, fmt, ...) \
151 ? MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS_
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
H A Dlog.h124 #define MPL_LOGV(fmt, ...) \
128 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\
132 #define MPL_LOGV(fmt, ...) \
135 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\
140 #define MPL_LOGV(fmt, ...) MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__)
150 #define MPL_LOGV_IF(cond, fmt, ...) \
151 do { if (0) MPL_LOG(fmt, ##__VA_ARGS__); } while (0)
153 #define MPL_LOGV_IF(cond, fmt, ...) \
155 ? MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS_
[all...]
/hardware/invensense/60xx/mlsdk/platform/include/
H A Dlog.h130 #define MPL_LOGV(fmt, ...) \
133 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\
136 #define MPL_LOGV(fmt, ...) MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__)
146 #define MPL_LOGV_IF(cond, fmt, ...) \
147 do { if (0) MPL_LOG(fmt, ##__VA_ARGS__); } while (0)
149 #define MPL_LOGV_IF(cond, fmt, ...) \
151 ? MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__) \
160 #define MPL_LOGD(fmt, ...) MPL_LOG(LOG_DEBUG, MPL_LOG_TAG, fmt, ##__VA_ARGS_
[all...]
/hardware/invensense/60xx/mlsdk/platform/linux/
H A Dlog_linux.c45 int _MLPrintLog (int priority, const char* tag, const char* fmt, ...) argument
50 va_start(ap, fmt);
51 result = _MLPrintVaLog(priority,tag,fmt,ap);
57 int _MLPrintVaLog(int priority, const char* tag, const char* fmt, va_list args) argument
64 if (NULL == fmt) {
65 fmt = "";
97 priority_char, tag, fmt);
/hardware/ti/omap4xxx/domx/domx/omx_rpc/inc/
H A Domx_rpc_utils.h67 #define DOMX_ERROR(fmt,...) TIMM_OSAL_Error(fmt, ##__VA_ARGS__)
68 #define DOMX_WARN(fmt,...) TIMM_OSAL_Warning(fmt, ##__VA_ARGS__)
69 #define DOMX_INFO(fmt,...) TIMM_OSAL_Info(fmt, ##__VA_ARGS__)
70 #define DOMX_DEBUG(fmt,...) TIMM_OSAL_Debug(fmt, ##__VA_ARGS__)
71 #define DOMX_ENTER(fmt,...) TIMM_OSAL_Entering(fmt, ##__VA_ARGS_
[all...]
/hardware/ti/omap4xxx/domx/mm_osal/src/
H A Dtimm_osal_trace.c94 const char *fmt, ...)
107 va_start(ap, fmt); /* make ap point to first arg after 'fmt' */
116 vsprintf(string, fmt, ap);
125 vprintf(fmt, ap);
93 __TIMM_OSAL_TraceFunction(const __TIMM_OSAL_TRACE_LOCATION * loc, const char *fmt, ...) argument
/hardware/ti/omap4xxx/
H A Dtm.c5 static void printf_log(const char *fmt, ...) argument
8 va_start(lst, fmt);
9 vprintf(fmt, lst);
14 extern void (*malloc_log)(const char *fmt, ...);
/hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/
H A Duim.h58 #define UIM_ERR(fmt, arg...) ALOGE("uim:"fmt"\n" , ##arg)
61 #define UIM_DBG(fmt, arg...) ALOGE("uim:"fmt"\n" , ## arg)
62 #define UIM_VER(fmt, arg...)
65 #define UIM_DBG(fmt, arg...) ALOGE("uim:"fmt"\n" , ## arg)
66 #define UIM_VER(fmt, arg...) ALOGE("uim:"fmt"\n" , ## arg)
69 #define UIM_DBG(fmt, ar
[all...]
/hardware/ti/wpan/ti_st/uim-sysfs/
H A Duim.h56 #define UIM_ERR(fmt, arg...) ALOGE("uim:"fmt"\n" , ##arg)
59 #define UIM_DBG(fmt, arg...) ALOGE("uim:"fmt"\n" , ## arg)
60 #define UIM_VER(fmt, arg...)
63 #define UIM_DBG(fmt, arg...) ALOGE("uim:"fmt"\n" , ## arg)
64 #define UIM_VER(fmt, arg...) ALOGE("uim:"fmt"\n" , ## arg)
67 #define UIM_DBG(fmt, ar
[all...]
/hardware/samsung_slsi/exynos5/libhwjpeg/
H A DExynosJpegBase.cpp45 #define JPEG_ERROR_LOG(fmt,...)
87 struct v4l2_format fmt; local
90 fmt.type = eType;
91 fmt.fmt.pix_mp.width = pstConfig->width;
92 fmt.fmt.pix_mp.height = pstConfig->height;
93 fmt.fmt.pix_mp.field = V4L2_FIELD_ANY;
94 fmt
136 struct v4l2_format fmt; local
[all...]
/hardware/ti/omap4xxx/ion/
H A Domap_ion.h26 int fmt; member in struct:omap_ion_tiler_alloc_data
/hardware/samsung_slsi/exynos5/mobicore/common/LogWrapper/
H A Dlog.h41 /** LOG_I(fmt, args...)
45 /** LOG_W(fmt, args...)
49 /** LOG_E(fmt, args...)
53 /** LOG_V(fmt, args...)
67 #define LOG_I(fmt, args...) DUMMY_FUNCTION()
68 #define LOG_W(fmt, args...) DUMMY_FUNCTION()
71 #define LOG_I(fmt, args...) LOG_i(fmt";%d", ## args, __LINE__)
72 #define LOG_W(fmt, args...) LOG_w(fmt";
[all...]
/hardware/qcom/media/mm-video-legacy/DivxDrmDecrypt/src/
H A DDivXDrmDecrypt.cpp38 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/
H A Dts_parser.h45 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
/hardware/qcom/media/mm-video-v4l2/DivxDrmDecrypt/src/
H A DDivXDrmDecrypt.cpp38 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/
H A Dts_parser.h45 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
/hardware/libhardware/tests/hwc/
H A Dutil.h36 unsigned *w, unsigned *h, unsigned *fmt);
/hardware/samsung_slsi/exynos5/include/
H A Dexynos_v4l2.h60 bool exynos_v4l2_enum_fmt(int fd, enum v4l2_buf_type type, unsigned int fmt);
62 int exynos_v4l2_g_fmt(int fd, struct v4l2_format *fmt);
64 int exynos_v4l2_s_fmt(int fd, struct v4l2_format *fmt);
66 int exynos_v4l2_try_fmt(int fd, struct v4l2_format *fmt);
108 int exynos_subdev_g_fmt(int fd, struct v4l2_subdev_format *fmt);
110 int exynos_subdev_s_fmt(int fd, struct v4l2_subdev_format *fmt);
/hardware/broadcom/libbt/src/
H A Duserial_vendor.c192 if(p_cfg->fmt & USERIAL_DATABITS_8)
194 else if(p_cfg->fmt & USERIAL_DATABITS_7)
196 else if(p_cfg->fmt & USERIAL_DATABITS_6)
198 else if(p_cfg->fmt & USERIAL_DATABITS_5)
206 if(p_cfg->fmt & USERIAL_PARITY_NONE)
208 else if(p_cfg->fmt & USERIAL_PARITY_EVEN)
210 else if(p_cfg->fmt & USERIAL_PARITY_ODD)
218 if(p_cfg->fmt & USERIAL_STOPBITS_1)
220 else if(p_cfg->fmt & USERIAL_STOPBITS_2)
/hardware/libhardware_legacy/
H A Dqemu.h75 extern int qemu_control_command( const char* fmt, ... );
/hardware/qcom/media/mm-video-v4l2/vidc/venc/src/
H A Dvideo_encoder_device_v4l2.cpp609 struct v4l2_format fmt; local
628 DEBUG_PRINT_LOW("fmt: description: %s, fmt: %x, flags = %x\n", fdesc.description,
637 DEBUG_PRINT_LOW("fmt: description: %s, fmt: %x, flags = %x\n", fdesc.description,
643 fmt.type = V4L2_BUF_TYPE_VIDEO_CAPTURE_MPLANE;
644 fmt.fmt.pix_mp.height = m_sVenc_cfg.input_height;
645 fmt.fmt
825 struct v4l2_format fmt; local
918 struct v4l2_format fmt; local
2912 struct v4l2_format fmt; local
[all...]

Completed in 767 milliseconds

1234