Searched refs:tag (Results 1 - 25 of 101) sorted by relevance

12345

/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
H A DJFmLog.java24 public static int v(String tag, String msg) { argument
25 return Log.v(tag, msg);
28 public static int d(String tag, String msg) { argument
29 return Log.d(tag, msg);
32 public static int i(String tag, String msg) { argument
33 return Log.i(tag, msg);
36 public static int w(String tag, String msg) { argument
37 return Log.w(tag, msg);
40 public static int e(String tag, String msg) { argument
41 return Log.e(tag, ms
[all...]
/hardware/samsung_slsi/exynos5/libexynosutils/
H A DExynos_log.c29 void Exynos_Log(EXYNOS_DEV_LOG_LEVEL logLevel, const char *tag, const char *msg, ...) argument
37 __android_log_vprint(ANDROID_LOG_DEBUG, tag, msg, argptr);
40 __android_log_vprint(ANDROID_LOG_WARN, tag, msg, argptr);
43 __android_log_vprint(ANDROID_LOG_ERROR, tag, msg, argptr);
46 __android_log_vprint(ANDROID_LOG_VERBOSE, tag, msg, argptr);
H A DExynos_log.h42 void Exynos_Log(EXYNOS_DEV_LOG_LEVEL logLevel, const char *tag, const char *msg, ...);
/hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
H A DExynos_OSAL_Log.c32 void _Exynos_OSAL_Log(EXYNOS_LOG_LEVEL logLevel, const char *tag, const char *msg, ...) argument
40 __android_log_vprint(ANDROID_LOG_DEBUG, tag, msg, argptr);
43 __android_log_vprint(ANDROID_LOG_INFO, tag, msg, argptr);
46 __android_log_vprint(ANDROID_LOG_WARN, tag, msg, argptr);
49 __android_log_vprint(ANDROID_LOG_ERROR, tag, msg, argptr);
52 __android_log_vprint(ANDROID_LOG_VERBOSE, tag, msg, argptr);
H A DExynos_OSAL_Log.h73 extern void _Exynos_OSAL_Log(EXYNOS_LOG_LEVEL logLevel, const char *tag, const char *msg, ...);
/hardware/libhardware/modules/camera/
H A DMetadata.h35 int addUInt8(uint32_t tag, int count, uint8_t *data);
36 int addInt32(uint32_t tag, int count, int32_t *data);
37 int addFloat(uint32_t tag, int count, float *data);
38 int addInt64(uint32_t tag, int count, int64_t *data);
39 int addDouble(uint32_t tag, int count, double *data);
40 int addRational(uint32_t tag, int count,
46 // Validate the tag, type and count for a metadata entry
47 bool validate(uint32_t tag, int tag_type, int count);
48 // Add a verified tag with data to this Metadata structure
49 int add(uint32_t tag, in
[all...]
H A DMetadata.cpp89 int Metadata::addUInt8(uint32_t tag, int count, uint8_t *data) argument
91 if (!validate(tag, TYPE_BYTE, count)) return -EINVAL;
92 return add(tag, count, data);
95 int Metadata::addInt32(uint32_t tag, int count, int32_t *data) argument
97 if (!validate(tag, TYPE_INT32, count)) return -EINVAL;
98 return add(tag, count, data);
101 int Metadata::addFloat(uint32_t tag, int count, float *data) argument
103 if (!validate(tag, TYPE_FLOAT, count)) return -EINVAL;
104 return add(tag, count, data);
107 int Metadata::addInt64(uint32_t tag, in argument
113 addDouble(uint32_t tag, int count, double *data) argument
119 addRational(uint32_t tag, int count, camera_metadata_rational_t *data) argument
126 validate(uint32_t tag, int tag_type, int count) argument
148 add(uint32_t tag, int count, void *tag_data) argument
208 Entry(uint32_t tag, void *data, int count) argument
[all...]
H A DScopedTrace.h36 inline ScopedTrace(uint64_t tag, const char* name) argument
37 : mTag(tag) {
/hardware/libhardware/tests/camera2/
H A DCameraMetadataTests.cpp63 int GetTypeFromTag(uint32_t tag) const {
64 return get_camera_metadata_tag_type(tag);
67 int GetTypeFromStaticTag(uint32_t tag) const {
69 camera_metadata_ro_entry entry = staticInfo.find(tag);
73 int GetEntryCountFromStaticTag(uint32_t tag) const {
75 camera_metadata_ro_entry entry = staticInfo.find(tag);
79 bool HasElementInArrayFromStaticTag(uint32_t tag, int32_t element) const { argument
81 camera_metadata_ro_entry entry = staticInfo.find(tag);
/hardware/invensense/60xx/mlsdk/platform/linux/
H A Dlog_linux.c45 int _MLPrintLog (int priority, const char* tag, const char* fmt, ...) argument
51 result = _MLPrintVaLog(priority,tag,fmt,ap);
57 int _MLPrintVaLog(int priority, const char* tag, const char* fmt, va_list args) argument
97 priority_char, tag, fmt);
/hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
H A Dperf.c134 char tag[5] = { PERF_FOUR_CHARS(ulID), 0 }; local
138 for (i=0; i<4; i++) if (tag[i] == ' ') tag[i] = '_';
139 ulID = PERF_FOURS(tag);
144 PERF_Config_Read(&config, tag);
/hardware/invensense/60xx/libsensors_iio/software/core/driver/include/
H A Dlog.h100 * This is the local tag used for the following simplified
102 * before using the other macros to change the tag.
278 * The second argument may be NULL or "" to indicate the "global" tag.
281 #define MPL_LOG(priority, tag, fmt, ...) \
282 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__)
290 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
291 ALOG(priority, tag, fmt, ##__VA_ARGS__)
293 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
294 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__)
296 #define MPL_LOG_PRI(priority, tag, fm
[all...]
/hardware/invensense/60xx/mlsdk/platform/include/
H A Dlog.h111 * This is the local tag used for the following simplified
113 * before using the other macros to change the tag.
274 * The second argument may be NULL or "" to indicate the "global" tag.
277 #define MPL_LOG(priority, tag, fmt, ...) \
278 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__)
286 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
287 ALOG(priority, tag, fmt, ##__VA_ARGS__)
289 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
290 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__)
292 #define MPL_LOG_PRI(priority, tag, fm
[all...]
/hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
H A Dlog.h104 * This is the local tag used for the following simplified
106 * before using the other macros to change the tag.
282 * The second argument may be NULL or "" to indicate the "global" tag.
285 #define MPL_LOG(priority, tag, fmt, ...) \
286 MPL_LOG_PRI(priority, tag, fmt, ##__VA_ARGS__)
294 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
295 LOG(priority, tag, fmt, ##__VA_ARGS__)
297 #define MPL_LOG_PRI(priority, tag, fmt, ...) \
298 pr_debug(MPL_##priority tag fmt, ##__VA_ARGS__)
300 #define MPL_LOG_PRI(priority, tag, fm
[all...]
/hardware/libhardware/modules/nfc/
H A Dnfc_pn544_example.c36 dev->common.tag = HARDWARE_DEVICE_TAG;
63 .tag = HARDWARE_MODULE_TAG,
/hardware/qcom/camera/QCamera2/HAL/
H A DQCamera2Hal.cpp33 tag: HARDWARE_MODULE_TAG,
/hardware/qcom/camera/QCamera2/HAL3/
H A DQCamera3Hal.cpp33 tag: HARDWARE_MODULE_TAG,
/hardware/ti/omap3/omx/system/src/openmax_il/perf/inc/
H A Dperf_config.h84 void PERF_Config_Read(PERF_Config *sConfig, char const *tag);
/hardware/libhardware/include/hardware/
H A Dcamera_common.h74 * This camera module version adds vendor tag support from the module, and
255 * Set up vendor-specific tag query methods. These are needed to properly query
277 * Get vendor section name for a vendor-specified entry tag. Only called for
280 * prefix their sections with "com.camerazoom." Must return NULL if the tag
283 * There may be different vendor-defined tag sections, for example the
290 const char *(*get_section_name)(const vendor_tag_ops_t *v, uint32_t tag);
293 * Get tag name for a vendor-specified entry tag. Only called for
295 * tag.
300 const char *(*get_tag_name)(const vendor_tag_ops_t *v, uint32_t tag);
[all...]
/hardware/qcom/display/msm8960/libmemtrack/
H A Dmemtrack_msm.c47 tag: HARDWARE_MODULE_TAG,
/hardware/qcom/display/msm8974/libmemtrack/
H A Dmemtrack_msm.c47 tag: HARDWARE_MODULE_TAG,
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosJpegEncoderForCamera.h103 unsigned short tag,
108 unsigned short tag,
113 unsigned short tag,
120 unsigned short tag,
/hardware/samsung_slsi/exynos5/libcamera2/
H A DExynosJpegEncoderForCamera.h101 unsigned short tag,
106 unsigned short tag,
111 unsigned short tag,
118 unsigned short tag,
/hardware/samsung_slsi/exynos5/libmemtrack/
H A Dmemtrack_exynos5.c47 tag: HARDWARE_MODULE_TAG,
/hardware/qcom/audio/legacy/alsa_sound/
H A Dacoustics_default.cpp39 tag : HARDWARE_MODULE_TAG,
60 dev->common.tag = HARDWARE_DEVICE_TAG;

Completed in 495 milliseconds

12345