Searched defs:tag (Results 1 - 25 of 29) sorted by relevance

12

/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);
/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);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/build/make/
H A Dgen_msvs_proj.sh83 die "Missing attribute value in '$opt' while generating $tag tag"
89 local tag=$1
92 echo "${indent}<${tag}"
97 echo "${indent}<${tag}>"
103 local tag=$1
105 echo "${indent}</${tag}>"
108 tag() { function
109 local tag=$1
112 echo "${indent}<${tag}"
[all...]
H A Dgen_msvs_vcxproj.sh84 die "Missing attribute value in '$opt' while generating $tag tag"
90 local tag=$1
93 echo "${indent}<${tag}"
98 echo "${indent}<${tag}>"
104 local tag=$1
106 echo "${indent}</${tag}>"
109 tag() { function
110 local tag=$1
113 echo "${indent}<${tag}"
[all...]
/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);
H A Dperf_config.c37 static void read_line(PERF_Config *sConfig, char const *line, char const *tag);
106 * Arg3 tag - restrict matches to this tag or no-tag
111 * the supplied tag. If it matches, the assignment is performed
116 void read_line(PERF_Config *cfg, char const *line, char const *tag) argument
126 /* check to see if there is a tag prefix */
133 /* ignore lines where the tag does not match */
134 if (!tag || strncmp(line, tag, pt
176 PERF_Config_Read(PERF_Config *sConfig, char const *tag) argument
[all...]
H A Dperf_rt.c362 static void count_delay(PERF_RT_Private *me, char *tag, PERF_RTdata_delay *dDelay, long n0) argument
364 fprintf(me->fRt, "rtPERF: %s[0x%lX]: ", tag, me->dSTS->size_min);
/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);
H A DCameraStreamFixture.h100 const int tag = ANDROID_SCALER_AVAILABLE_PROCESSED_SIZES; local
103 camera_metadata_ro_entry entry = staticInfo.find(tag);
105 << "Missing tag android.scaler.availableProcessedSizes";
/hardware/libhardware/include/hardware/
H A Dhardware.h29 * Value for the hw_module_t.tag field
87 /** tag must be initialized to HARDWARE_MODULE_TAG */
88 uint32_t tag; member in struct:hw_module_t
168 /** tag must be initialized to HARDWARE_DEVICE_TAG */
169 uint32_t tag; member in struct:hw_device_t
H A Daudio_effect.h920 // tag must be initialized to AUDIO_EFFECT_LIBRARY_TAG
921 uint32_t tag; member in struct:audio_effect_library_s
/hardware/libhardware/modules/camera/
H A DCameraHAL.cpp42 // Handle containing vendor tag functionality
137 static const char* get_section_name(const vendor_tag_ops_t* ops, uint32_t tag) argument
139 return gVendorTags.getSectionName(ops, tag);
142 static const char* get_tag_name(const vendor_tag_ops_t* ops, uint32_t tag) argument
144 return gVendorTags.getTagName(ops, tag);
147 static int get_tag_type(const vendor_tag_ops_t* ops, uint32_t tag) argument
149 return gVendorTags.getTagType(ops, tag);
173 tag : HARDWARE_MODULE_TAG,
H A DMetadata.cpp66 int Metadata::addUInt8(uint32_t tag, int count, const uint8_t *data) argument
68 if (!validate(tag, TYPE_BYTE, count)) return -EINVAL;
69 return add(tag, count, data);
72 int Metadata::add1UInt8(uint32_t tag, const uint8_t data) argument
74 return addUInt8(tag, 1, &data);
77 int Metadata::addInt32(uint32_t tag, int count, const int32_t *data) argument
79 if (!validate(tag, TYPE_INT32, count)) return -EINVAL;
80 return add(tag, count, data);
83 int Metadata::addFloat(uint32_t tag, int count, const float *data) argument
85 if (!validate(tag, TYPE_FLOA
89 addInt64(uint32_t tag, int count, const int64_t *data) argument
95 addDouble(uint32_t tag, int count, const double *data) argument
101 addRational(uint32_t tag, int count, const camera_metadata_rational_t *data) argument
108 validate(uint32_t tag, int tag_type, int count) argument
130 add(uint32_t tag, int count, const void *tag_data) argument
[all...]
H A DVendorTags.cpp35 // Describes a single vendor tag entry
40 // Describes a vendor tag section
90 // Get a static handle to a specific vendor tag section
91 const Section* getSection(uint32_t tag) argument
93 uint32_t section = (tag - vendor_section_start) >> 16;
95 if (tag < vendor_section_start) {
96 ALOGE("%s: Tag 0x%x before vendor section", __func__, tag);
101 ALOGE("%s: Tag 0x%x after vendor section", __func__, tag);
108 // Get a static handle to a specific vendor tag entry
109 const Entry* getEntry(uint32_t tag) argument
159 getSectionName(const vendor_tag_ops_t* ops, uint32_t tag) argument
169 getTagName(const vendor_tag_ops_t* ops, uint32_t tag) argument
179 getTagType(const vendor_tag_ops_t* ops, uint32_t tag) argument
[all...]
/hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
H A Dwpa.h53 uint8 tag; /* TAG */ member in struct:__anon43
67 uint8 tag; /* TAG */ member in struct:__anon45
/hardware/intel/img/psb_video/src/
H A Dpsb_drv_debug.c296 char tag[128]; local
297 (void)tag;
298 sprintf(tag, "pvr_drv_video ");
299 __android_log_vprint(ANDROID_LOG_ERROR, tag, msg, args);
305 char tag[128]; local
306 (void)tag;
308 sprintf(tag, "pvr_drv_video[%d:0x%08lx]", getpid(), pthread_self());
310 sprintf(tag, "pvr_drv_video ");
311 __android_log_vprint(ANDROID_LOG_DEBUG, tag, msg, args);
566 char tag[12 local
[all...]
/hardware/ti/omap4-aah/camera/
H A DEncoder_libjpeg.cpp316 bool ExifElementsTable::isAsciiTag(const char* tag) { argument
318 return (strcmp(tag, TAG_GPS_PROCESSING_METHOD) == 0);
369 status_t ExifElementsTable::insertElement(const char* tag, const char* value) { argument
373 if (!value || !tag) {
382 if (isAsciiTag(tag)) {
388 if (IsGpsTag(tag)) {
390 table[position].Tag = GpsTagNameToValue(tag);
394 table[position].Tag = TagNameToValue(tag);
397 if (strcmp(tag, TAG_DATETIME) == 0) {
401 // jhead isn't taking datetime tag
[all...]
/hardware/ti/omap4xxx/camera/
H A DEncoder_libjpeg.cpp259 bool ExifElementsTable::isAsciiTag(const char* tag) { argument
261 return (strcmp(tag, TAG_GPS_PROCESSING_METHOD) == 0);
308 status_t ExifElementsTable::insertElement(const char* tag, const char* value) { argument
312 if (!value || !tag) {
321 if (isAsciiTag(tag)) {
327 if (IsGpsTag(tag)) {
329 table[position].Tag = GpsTagNameToValue(tag);
333 table[position].Tag = TagNameToValue(tag);
336 if (strcmp(tag, TAG_DATETIME) == 0) {
/hardware/samsung_slsi/exynos5/libcamera/
H A DExynosJpegEncoderForCamera.cpp486 // don't create GPS_PROCESSING_METHOD tag if there isn't any
617 unsigned short tag,
622 memcpy(*pCur, &tag, 2);
633 unsigned short tag,
641 memcpy(*pCur, &tag, 2);
652 unsigned short tag,
659 memcpy(*pCur, &tag, 2);
672 unsigned short tag,
679 memcpy(*pCur, &tag, 2);
616 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned int value) argument
632 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned char *pValue) argument
651 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned char *pValue, unsigned int *offset, unsigned char *start) argument
671 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, rational_t *pValue, unsigned int *offset, unsigned char *start) argument
/hardware/samsung_slsi/exynos5/libcamera2/
H A DExynosJpegEncoderForCamera.cpp469 // don't create GPS_PROCESSING_METHOD tag if there isn't any
603 unsigned short tag,
608 memcpy(*pCur, &tag, 2);
619 unsigned short tag,
627 memcpy(*pCur, &tag, 2);
638 unsigned short tag,
645 memcpy(*pCur, &tag, 2);
658 unsigned short tag,
665 memcpy(*pCur, &tag, 2);
602 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned int value) argument
618 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned char *pValue) argument
637 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, unsigned char *pValue, unsigned int *offset, unsigned char *start) argument
657 writeExifIfd(unsigned char **pCur, unsigned short tag, unsigned short type, unsigned int count, rational_t *pValue, unsigned int *offset, unsigned char *start) argument
H A DExynosCamera2.cpp381 uint32_t tag,
386 return add_camera_metadata_entry(request, tag, entryData,
389 int type = get_camera_metadata_tag_type(tag);
405 #define ADD_OR_SIZE( tag, data, count ) \
407 tag, data, count) ) != OK ) return ret
711 #define ADD_OR_SIZE( tag, data, count ) \
713 tag, data, count) ) != OK ) return ret
377 addOrSize(camera_metadata_t *request, bool sizeRequest, size_t *entryCount, size_t *dataCount, uint32_t tag, const void *entryData, size_t entryDataCount) argument
/hardware/ti/omap4-aah/
H A Dheaptracker.c45 uint32_t tag; member in struct:hdr
75 extern int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap);
189 hdr->tag = ALLOCATION_TAG;
200 if (hdr->tag != ALLOCATION_TAG)
257 if (hdr->tag != ALLOCATION_TAG && hdr->tag != BACKLOG_TAG) {
259 user(hdr), hdr->tag);
267 if (hdr->tag == BACKLOG_TAG && was_used_after_free(hdr)) {
281 if (hdr->tag == BACKLOG_TAG) {
310 hdr->tag
[all...]
/hardware/ti/omap4xxx/
H A Dheaptracker.c45 uint32_t tag; member in struct:hdr
75 extern int __android_log_vprint(int prio, const char *tag, const char *fmt, va_list ap);
189 hdr->tag = ALLOCATION_TAG;
200 if (hdr->tag != ALLOCATION_TAG)
257 if (hdr->tag != ALLOCATION_TAG && hdr->tag != BACKLOG_TAG) {
259 user(hdr), hdr->tag);
267 if (hdr->tag == BACKLOG_TAG && was_used_after_free(hdr)) {
281 if (hdr->tag == BACKLOG_TAG) {
310 hdr->tag
[all...]
/hardware/intel/img/libdrm/libdrm/
H A Dxf86drm.c2075 int drmAddContextTag(int fd, drm_context_t context, void *tag) argument
2079 if (drmHashInsert(entry->tagTable, context, tag)) {
2081 drmHashInsert(entry->tagTable, context, tag);

Completed in 545 milliseconds

12