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

/frameworks/av/services/camera/libcameraservice/tests/
H A DCameraProviderManagerTest.cpp232 CameraMetadataType tagType = CameraMetadataType::BYTE; local
238 vendorSection[0].tags[0].tagType = tagType;
266 vendorSection[0].tags[0].tagType = secondTagType;
/frameworks/av/camera/
H A DVendorTagDescriptor.cpp133 int32_t tagType; local
145 if ((res = parcel->readInt32(&tagType)) != OK) {
149 if (tagType < 0 || tagType >= NUM_TYPES) {
150 ALOGE("%s: tag type %d from vendor ops does not exist.", __FUNCTION__, tagType);
171 mTagToTypeMap.add(tag, tagType);
272 int32_t tagType; local
277 tagType = mTagToTypeMap.valueFor(tag);
279 if ((res = parcel->writeInt32(tagType)) != OK) break;
557 int tagType local
[all...]
H A DCameraMetadata.cpp173 int tagType = get_local_camera_metadata_tag_type(tag, mBuffer); local
174 if ( CC_UNLIKELY(tagType == -1)) {
178 if ( CC_UNLIKELY(tagType != expectedType) ) {
182 camera_metadata_type_names[tagType],
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraProviderManager.cpp1313 int tagType = (int) section.tags[j].tagType; local
1314 if (tagType < 0 || tagType >= NUM_TYPES) {
1315 ALOGE("%s: tag type %d from vendor ops does not exist.", __FUNCTION__, tagType);
1318 desc->mTagToTypeMap.add(tag, tagType);
/frameworks/base/core/jni/
H A Dandroid_hardware_camera2_CameraMetadata.cpp293 int tagType = get_local_camera_metadata_tag_type(tag, metaBuffer); local
295 if (tagType == -1) {
300 size_t tagSize = Helpers::getTypeSize(tagType);
332 int tagType = get_local_camera_metadata_tag_type(tag, metaBuffer); local
334 if (tagType == -1) {
357 tagType, arrayReader.get(), arrayReader.size());
655 int tagType = get_local_camera_metadata_tag_type_vendor_id(tag, vendorId); local
656 if (tagType == -1) {
662 return tagType;
839 int tagType local
[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 171 milliseconds