Searched defs:tagType (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/camera/
H A DVendorTagDescriptor.cpp107 int tagType = vOps->get_tag_type(vOps, tag); local
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);
[all...]
H A DCameraMetadata.cpp172 int tagType = get_camera_metadata_tag_type(tag); local
173 if ( CC_UNLIKELY(tagType == -1)) {
177 if ( CC_UNLIKELY(tagType != expectedType) ) {
181 camera_metadata_type_names[tagType],
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp275 int tagType = get_camera_metadata_tag_type(tag); local
276 if (tagType == -1) {
281 size_t tagSize = Helpers::getTypeSize(tagType);
312 int tagType = get_camera_metadata_tag_type(tag); local
313 if (tagType == -1) {
318 size_t tagSize = Helpers::getTypeSize(tagType);
337 tagType, arrayReader.get(), arrayReader.size());
733 int tagType = get_camera_metadata_tag_type(tag); local
734 if (tagType == -1) {
740 return tagType;
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java1626 * @param tagType the type of the tag (see {@link ExifTag#getDataType()}).
1633 public int setTagDefinition(short tagId, int defaultIfd, short tagType, argument
1638 if (ExifTag.isValidType(tagType) && ExifTag.isValidIfd(defaultIfd)) {
1670 getTagInfo().put(tagDef, ifdFlags << 24 | (tagType << 16) | defaultComponentCount);

Completed in 64 milliseconds