Home | History | Annotate | Download | only in camera

Lines Matching defs:tagType

107         int tagType = vOps->get_tag_type(vOps, tag);
108 if (tagType < 0 || tagType >= NUM_TYPES) {
109 ALOGE("%s: tag type %d from vendor ops does not exist.", __FUNCTION__, tagType);
112 desc->mTagToTypeMap.add(tag, tagType);
164 int32_t tagType;
176 if ((res = parcel->readInt32(&tagType)) != OK) {
180 if (tagType < 0 || tagType >= NUM_TYPES) {
181 ALOGE("%s: tag type %d from vendor ops does not exist.", __FUNCTION__, tagType);
202 desc->mTagToTypeMap.add(tag, tagType);
304 int32_t tagType;
309 tagType = mTagToTypeMap.valueFor(tag);
311 if ((res = parcel->writeInt32(tagType)) != OK) break;