Home
last modified time | relevance | path

Searched refs:gpsProcessingMethod (Results 1 – 11 of 11) sorted by relevance

/hardware/samsung_slsi/exynos5/libcamera2/
Dfimc-is-metadata.h359 uint32_t gpsProcessingMethod; member
370 uint32_t gpsProcessingMethod; member
784 uint8_t gpsProcessingMethod[32]; member
DExynosCamera2.cpp848 static const uint8_t gpsProcessingMethod[32] = "None"; in constructDefaultRequest() local
849 ADD_OR_SIZE(ANDROID_JPEG_GPS_PROCESSING_METHOD, gpsProcessingMethod, 32); in constructDefaultRequest()
DMetadataConverter.cpp216 dst_ext->gpsProcessingMethod[i] = curr_entry.data.u8[i]; in ToInternalShot()
667 &(metadata_ext->gpsProcessingMethod), 32)) in ToDynamicMetadata()
DExynosCameraHWInterface2.cpp5940 memcpy(exifInfo->gps_processing_method, currentEntry->gpsProcessingMethod, 32); in m_setExifChangedAttribute()
/hardware/samsung_slsi/exynos5/original-kernel-headers/linux/
Dfimc-is-metadata.h407 uint32_t gpsProcessingMethod; member
417 uint32_t gpsProcessingMethod; member
931 uint8_t gpsProcessingMethod[32]; member
/hardware/qcom/camera/QCamera2/HAL3/
DQCamera3Channel.cpp1448 int32_t getExifGpsProcessingMethod(char *gpsProcessingMethod, in getExifGpsProcessingMethod() argument
1452 memcpy(gpsProcessingMethod, ExifAsciiPrefix, EXIF_ASCII_PREFIX_SIZE); in getExifGpsProcessingMethod()
1454 strncpy(gpsProcessingMethod + EXIF_ASCII_PREFIX_SIZE, value, strlen(value)); in getExifGpsProcessingMethod()
1456 gpsProcessingMethod[count++] = '\0'; // increase 1 for the last NULL char in getExifGpsProcessingMethod()
1674 char gpsProcessingMethod[EXIF_ASCII_PREFIX_SIZE + GPS_PROCESSING_METHOD_SIZE]; in getExifData() local
1676 … rc = getExifGpsProcessingMethod(gpsProcessingMethod, count, mJpegSettings->gps_processing_method); in getExifData()
1681 (void *)gpsProcessingMethod); in getExifData()
/hardware/samsung_slsi/exynos5/include/
DExynosCamera.h624 bool setGpsProcessingMethod(const char *gpsProcessingMethod);
/hardware/qcom/camera/QCamera2/HAL/
DQCameraParameters.h389 int32_t getExifGpsProcessingMethod(char *gpsProcessingMethod, uint32_t &count);
DQCamera2HWI.cpp4071 char gpsProcessingMethod[EXIF_ASCII_PREFIX_SIZE + GPS_PROCESSING_METHOD_SIZE]; in getExifData() local
4073 rc = mParameters.getExifGpsProcessingMethod(gpsProcessingMethod, count); in getExifData()
4078 (void *)gpsProcessingMethod); in getExifData()
DQCameraParameters.cpp5352 int32_t QCameraParameters::getExifGpsProcessingMethod(char *gpsProcessingMethod, in getExifGpsProcessingMethod() argument
5357 memcpy(gpsProcessingMethod, ExifAsciiPrefix, EXIF_ASCII_PREFIX_SIZE); in getExifGpsProcessingMethod()
5359 strncpy(gpsProcessingMethod + EXIF_ASCII_PREFIX_SIZE, str, strlen(str)); in getExifGpsProcessingMethod()
5361 gpsProcessingMethod[count++] = '\0'; // increase 1 for the last NULL char in getExifGpsProcessingMethod()
/hardware/samsung_slsi/exynos5/libcamera/
DExynosCamera.cpp3012 bool ExynosCamera::setGpsProcessingMethod(const char *gpsProcessingMethod) in setGpsProcessingMethod() argument
3016 if (gpsProcessingMethod != NULL) { in setGpsProcessingMethod()
3017 size_t len = strlen(gpsProcessingMethod); in setGpsProcessingMethod()
3021 memcpy(mExifInfo.gps_processing_method, gpsProcessingMethod, len); in setGpsProcessingMethod()