Searched refs:fmt (Results 1 - 25 of 82) 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/mm-camera-interface/
H A Dmm_camera_dbg.h47 #define CDBG(fmt, args...) do{}while(0)
55 #define CDBG(fmt, args...) ALOGV(fmt, ##args)
58 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args)
59 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
64 #define CDBG_HIGH(fmt, args...) ALOGE(fmt, ##args)
65 #define CDBG_ERROR(fmt, arg
[all...]
/hardware/ti/wlan/wl1271/platforms/os/linux/inc/
H A Dioctl_init.h52 # define print_deb(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
54 # define print_deb(fmt, arg...)
58 # define print_info(fmt, arg...) printk(KERN_INFO DRIVER_NAME ": " fmt,##arg)
60 # define print_info(fmt, arg...)
64 # define print_err(fmt, arg...) printk(KERN_ERR DRIVER_NAME ": " fmt,##arg)
H A DWlanDrvIf.h63 #define ti_dprintf(log, fmt, args...) do { \
65 printk(KERN_INFO fmt, ## args); \
69 #define ti_dprintf(log, fmt, args...)
73 #define ti_nodprintf(log, fmt, args...)
/hardware/invensense/libsensors_iio/software/core/driver/include/
H A Dlog.h119 #define MPL_LOGV(fmt, ...) \
123 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\
127 #define MPL_LOGV(fmt, ...) \
130 MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__);\
135 #define MPL_LOGV(fmt, ...) MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS__)
145 #define MPL_LOGV_IF(cond, fmt, ...) \
146 do { if (0) MPL_LOG(fmt, ##__VA_ARGS__); } while (0)
148 #define MPL_LOGV_IF(cond, fmt, ...) \
150 ? MPL_LOG(LOG_VERBOSE, MPL_LOG_TAG, fmt, ##__VA_ARGS_
[all...]
/hardware/qcom/camera/QCamera/stack/mm-camera-interface/inc/
H A Dmm_camera_dbg.h47 #define CDBG(fmt, args...) do{}while(0)
55 #define CDBG(fmt, args...) ALOGE(fmt, ##args)
58 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args)
59 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
64 #define CDBG_HIGH(fmt, args...) ALOGE(fmt, ##args)
65 #define CDBG_ERROR(fmt, arg
[all...]
/hardware/qcom/camera/QCamera/stack/mm-jpeg-interface/inc/
H A Dmm_jpeg_dbg.h47 #define CDBG(fmt, args...) do{}while(0)
55 #define CDBG(fmt, args...) ALOGE(fmt, ##args)
58 #define CDBG(fmt, args...) fprintf(stderr, fmt, ##args)
59 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
64 #define CDBG_HIGH(fmt, args...) ALOGE(fmt, ##args)
65 #define CDBG_ERROR(fmt, arg
[all...]
/hardware/invensense/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/qcom/camera/inc/
H A Domx_debug.h43 #define OMXDBG(fmt, args...) ALOGV(fmt, ##args)
45 #define OMXDBG(fmt, args...) LOGV(fmt, ##args)
/hardware/invensense/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/qcom/camera/QCamera/HAL/core/src/
H A DQCameraStream.cpp112 mm_camera_ch_image_fmt_parm_t fmt;
132 memset(&fmt, 0, sizeof(mm_camera_ch_image_fmt_parm_t));
133 fmt.ch_type = MM_CAMERA_CH_PREVIEW;
134 fmt.def.fmt = CAMERA_YUV_420_NV12; //dim.prev_format;
135 fmt.def.dim.width = dim.display_width;
136 fmt.def.dim.height = dim.display_height;
137 LOGV("%s: preview channel fmt = %d", __func__,
142 rc = cam_config_set_parm(cameraId, MM_CAMERA_PARM_CH_IMAGE_FMT, &fmt);
164 memset(&fmt,
264 mm_camera_ch_image_fmt_parm_t fmt; local
[all...]
/hardware/qcom/camera/
H A DQCameraStream.cpp113 mm_camera_ch_image_fmt_parm_t fmt;
133 memset(&fmt, 0, sizeof(mm_camera_ch_image_fmt_parm_t));
134 fmt.ch_type = MM_CAMERA_CH_PREVIEW;
135 fmt.def.fmt = CAMERA_YUV_420_NV12; //dim.prev_format;
136 fmt.def.dim.width = dim.display_width;
137 fmt.def.dim.height = dim.display_height;
138 ALOGV("%s: preview channel fmt = %d", __func__,
143 rc = cam_config_set_parm(cameraId, MM_CAMERA_PARM_CH_IMAGE_FMT, &fmt);
165 memset(&fmt,
265 mm_camera_ch_image_fmt_parm_t fmt; local
[all...]
/hardware/ti/wlan/wl1271/platforms/os/common/inc/
H A Dcli_cu_common.h74 # define print(fmt, arg...) fprintf(stdout, fmt, ##arg)
78 # define print_err(fmt, arg...) fprintf(stderr, fmt, ##arg)
83 # define print_deb(fmt, arg...) fprintf(stdout, fmt, ##arg)
85 # define print_deb(fmt, arg...)
/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/DivxDrmDecrypt/src/
H A DDivXDrmDecrypt.cpp38 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
/hardware/qcom/media/mm-video/vidc/vdec/inc/
H A Dts_parser.h45 #define ALOGE(fmt, args...) fprintf(stderr, fmt, ##args)
/hardware/qcom/camera/QCamera/stack/mm-camera-test/src/
H A Dmm_qcamera_rdi.c52 static int mm_app_set_rdi_fmt(int cam_id,mm_camera_image_fmt_t *fmt) argument
58 fmt->meta_header = MM_CAMEAR_META_DATA_TYPE_DEF;
60 fmt->fmt = CAMERA_BAYER_SBGGR10;//CAMERA_RDI;
61 fmt->width = 0;
62 fmt->height = 0;
63 fmt->rotation = 0;
65 CDBG("%s: RDI Dimensions = %d X %d",__func__,fmt->width,fmt->height);
149 mm_app_set_rdi_fmt(cam_id,&pme->stream[MM_CAMERA_RDI].str_config.fmt);
[all...]
/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);

Completed in 320 milliseconds

1234