Home
last modified time | relevance | path

Searched refs:VendorTagDescriptor (Results 1 – 18 of 18) sorted by relevance

/frameworks/av/camera/include/camera/
DVendorTagDescriptor.h30 class VendorTagDescriptor; variable
41 class VendorTagDescriptor : public Parcelable {
43 virtual ~VendorTagDescriptor();
45 VendorTagDescriptor();
46 VendorTagDescriptor(const VendorTagDescriptor& src);
47 VendorTagDescriptor& operator=(const VendorTagDescriptor& rhs);
49 void copyFrom(const VendorTagDescriptor& src);
136 class VendorTagDescriptor :
137 public ::android::hardware::camera2::params::VendorTagDescriptor,
138 public LightRefBase<VendorTagDescriptor> {
[all …]
DCameraMetadata.h29 class VendorTagDescriptor; variable
238 const VendorTagDescriptor* vTags, uint32_t *tag);
/frameworks/base/core/java/android/hardware/camera2/params/
DVendorTagDescriptor.java30 public final class VendorTagDescriptor implements Parcelable { class
32 private VendorTagDescriptor(Parcel source) { in VendorTagDescriptor() method in VendorTagDescriptor
35 … public static final @android.annotation.NonNull Parcelable.Creator<VendorTagDescriptor> CREATOR =
36 new Parcelable.Creator<VendorTagDescriptor>() {
38 public VendorTagDescriptor createFromParcel(Parcel source) {
40 VendorTagDescriptor vendorDescriptor = new VendorTagDescriptor(source);
49 public VendorTagDescriptor[] newArray(int size) {
50 return new VendorTagDescriptor[size];
/frameworks/av/camera/tests/
DVendorTagDescriptorTests.cpp97 sp<VendorTagDescriptor> vDesc; in TEST()
99 EXPECT_EQ(OK, VendorTagDescriptor::createDescriptorFromOps(vOps, /*out*/vDesc)); in TEST()
133 sp<VendorTagDescriptor> vDescOriginal, vDescParceled; in TEST()
135 EXPECT_EQ(OK, VendorTagDescriptor::createDescriptorFromOps(vOps, /*out*/vDescOriginal)); in TEST()
145 vDescParceled = new VendorTagDescriptor(); in TEST()
178 sp<VendorTagDescriptor> vDesc; in TEST()
186 EXPECT_EQ(BAD_VALUE, VendorTagDescriptor::createDescriptorFromOps(/*vOps*/NULL, vDesc)); in TEST()
189 ASSERT_EQ(OK, VendorTagDescriptor::createDescriptorFromOps(&vOps, vDesc)); in TEST()
202 sp<VendorTagDescriptor> prevGlobal = VendorTagDescriptor::getGlobalVendorTagDescriptor(); in TEST()
203 VendorTagDescriptor::clearGlobalVendorTagDescriptor(); in TEST()
[all …]
/frameworks/av/camera/
DVendorTagDescriptor.cpp58 static sp<VendorTagDescriptor> sGlobalVendorTagDescriptor;
65 VendorTagDescriptor::~VendorTagDescriptor() { in ~VendorTagDescriptor()
72 VendorTagDescriptor::VendorTagDescriptor() : in VendorTagDescriptor() function in android::hardware::camera2::params::VendorTagDescriptor
77 VendorTagDescriptor::VendorTagDescriptor(const VendorTagDescriptor& src) { in VendorTagDescriptor() function in android::hardware::camera2::params::VendorTagDescriptor
81 VendorTagDescriptor& VendorTagDescriptor::operator=(const VendorTagDescriptor& rhs) { in operator =()
86 void VendorTagDescriptor::copyFrom(const VendorTagDescriptor& src) { in copyFrom()
111 status_t VendorTagDescriptor::readFromParcel(const android::Parcel* parcel) { in readFromParcel()
220 int VendorTagDescriptor::getTagCount() const { in getTagCount()
228 void VendorTagDescriptor::getTagArray(uint32_t* tagArray) const { in getTagArray()
235 const char* VendorTagDescriptor::getSectionName(uint32_t tag) const { in getSectionName()
[all …]
DAndroid.bp49 "VendorTagDescriptor.cpp",
DCameraMetadata.cpp429 sp<VendorTagDescriptor> vTags = VendorTagDescriptor::getGlobalVendorTagDescriptor(); in removePermissionEntries()
782 const VendorTagDescriptor* vTags, uint32_t *tag) { in getTagFromName()
/frameworks/base/core/jni/
Dandroid_hardware_camera2_CameraMetadata.cpp671 sp<VendorTagDescriptor> vTags; in CameraMetadata_getTagFromKeyLocal()
695 sp<VendorTagDescriptor> vTags = VendorTagDescriptor::getGlobalVendorTagDescriptor(); in CameraMetadata_getAllVendorKeys()
818 sp<VendorTagDescriptor> vTags = in CameraMetadata_getTagFromKey()
819 VendorTagDescriptor::getGlobalVendorTagDescriptor(); in CameraMetadata_getTagFromKey()
857 sp<VendorTagDescriptor> desc = new VendorTagDescriptor(); in CameraMetadata_setupGlobalVendorTagDescriptor()
862 VendorTagDescriptor::clearGlobalVendorTagDescriptor(); in CameraMetadata_setupGlobalVendorTagDescriptor()
865 VendorTagDescriptor::clearGlobalVendorTagDescriptor(); in CameraMetadata_setupGlobalVendorTagDescriptor()
871 err = VendorTagDescriptor::setAsGlobalVendorTagDescriptor(desc); in CameraMetadata_setupGlobalVendorTagDescriptor()
/frameworks/av/camera/aidl/android/hardware/
DICameraService.aidl23 import android.hardware.camera2.params.VendorTagDescriptor;
153 VendorTagDescriptor getCameraVendorTagDescriptor(); in getCameraVendorTagDescriptor()
/frameworks/av/camera/aidl/android/hardware/camera2/params/
DVendorTagDescriptor.aidl20 parcelable VendorTagDescriptor cpp_header "camera/VendorTagDescriptor.h";
/frameworks/av/camera/ndk/ndk_vendor/impl/
DACameraManager.cpp40 using android::hardware::camera::common::V1_0::helper::VendorTagDescriptor;
57 class HidlVendorTagDescriptor : public VendorTagDescriptor {
66 /*out*/ sp<VendorTagDescriptor> *descriptor);
70 sp<VendorTagDescriptor> *descriptor) { in createDescriptorFromHidl()
204 sp<VendorTagDescriptor> vendorTagDescriptor; in setupVendorTags()
808 sp<VendorTagDescriptor> vTags = nullptr; in getTagFromName()
/frameworks/av/services/camera/libcameraservice/utils/
DTagMonitor.cpp71 sp<VendorTagDescriptor> vTags = in parseTagsToMonitor()
72 VendorTagDescriptor::getGlobalVendorTagDescriptor(); in parseTagsToMonitor()
/frameworks/av/camera/ndk/impl/
DACameraManager.cpp142 sp<VendorTagDescriptor> desc = new VendorTagDescriptor(); in getCameraServiceLocked()
147 status_t err = VendorTagDescriptor::setAsGlobalVendorTagDescriptor(desc); in getCameraServiceLocked()
181 VendorTagDescriptor::clearGlobalVendorTagDescriptor(); in getCameraServiceLocked()
/frameworks/av/services/camera/libcameraservice/hidl/
DHidlCameraService.cpp263 const std::unordered_map<metadata_vendor_id_t, sp<android::VendorTagDescriptor>> in getCameraVendorTagSections()
275 sp<VendorTagDescriptor> desc = vendorIdAndTagDescs.second; in getCameraVendorTagSections()
/frameworks/av/services/camera/libcameraservice/common/
DCameraProviderManager.h46 class HidlVendorTagDescriptor : public VendorTagDescriptor {
57 sp<VendorTagDescriptor>& descriptor);
363 sp<VendorTagDescriptor> mVendorTagDescriptor;
DCameraProviderManager.cpp2773 sp<VendorTagDescriptor>& descriptor) { in createDescriptorFromHidl()
/frameworks/av/services/camera/libcameraservice/
DCameraService.cpp264 VendorTagDescriptor::clearGlobalVendorTagDescriptor(); in ~CameraService()
735 hardware::camera2::params::VendorTagDescriptor* desc) { in getCameraVendorTagDescriptor()
741 sp<VendorTagDescriptor> globalDescriptor = VendorTagDescriptor::getGlobalVendorTagDescriptor(); in getCameraVendorTagDescriptor()
3616 sp<VendorTagDescriptor> desc = VendorTagDescriptor::getGlobalVendorTagDescriptor(); in dump()
DCameraService.h125 hardware::camera2::params::VendorTagDescriptor* desc);